import os
print(os.environ.get('SLURM_JOB_NODELIST'))
ravg1001
import torch
import einops
from fancy_einsum import einsum
from dataclasses import dataclass
from transformer_lens import HookedTransformer, HookedTransformerConfig, utils
import torch.nn as nn
import numpy as np
import math
from transformer_lens.utils import get_corner, gelu_new, tokenize_and_concatenate
import tqdm.auto as tqdm
import seaborn as sns
import matplotlib.pyplot as plt
from torch.utils.data import DataLoader, Dataset
import pandas as pd
from torch.optim import Adam
from torch.nn import CrossEntropyLoss
import seaborn as sns
from sklearn.metrics import confusion_matrix
from sklearn.model_selection import train_test_split
from sklearn.metrics import accuracy_score, confusion_matrix, ConfusionMatrixDisplay
from transformer_lens.utils import get_act_name
#from transformers import AutoModelForCausalLM, AutoTokenizer, BitsAndBytesConfig
from typing import List, Tuple
import torch.nn.functional as F
import time
%matplotlib inline
/u/kamu/.local/lib/python3.10/site-packages/tqdm/auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html from .autonotebook import tqdm as notebook_tqdm
# Move the model to the GPU for faster processing
device = "cuda" if torch.cuda.is_available() else "cpu"
device
'cuda'
Data preprocessing¶
#Emotion
df_train = pd.read_csv('~/transformers_play/emotional_dataset/training.csv')
print(df_train)
df_test = pd.read_csv('~/transformers_play/emotional_dataset/test.csv')
print(df_test)
df_val = pd.read_csv('~/transformers_play/emotional_dataset/validation.csv')
print(df_val)
#IMDB sentiment
df_senti = pd.read_csv('~/transformers_play/emotional_dataset/IMDB_Dataset.csv')
print(df_senti.columns)
print(df_senti)
text label
0 i didnt feel humiliated 0
1 i can go from feeling so hopeless to so damned... 0
2 im grabbing a minute to post i feel greedy wrong 3
3 i am ever feeling nostalgic about the fireplac... 2
4 i am feeling grouchy 3
... ... ...
15995 i just had a very brief time in the beanbag an... 0
15996 i am now turning and i feel pathetic that i am... 0
15997 i feel strong and good overall 1
15998 i feel like this was such a rude comment and i... 3
15999 i know a lot but i feel so stupid because i ca... 0
[16000 rows x 2 columns]
text label
0 im feeling rather rotten so im not very ambiti... 0
1 im updating my blog because i feel shitty 0
2 i never make her separate from me because i do... 0
3 i left with my bouquet of red and yellow tulip... 1
4 i was feeling a little vain when i did this one 0
... ... ...
1995 i just keep feeling like someone is being unki... 3
1996 im feeling a little cranky negative after this... 3
1997 i feel that i am useful to my people and that ... 1
1998 im feeling more comfortable with derby i feel ... 1
1999 i feel all weird when i have to meet w people ... 4
[2000 rows x 2 columns]
text label
0 im feeling quite sad and sorry for myself but ... 0
1 i feel like i am still looking at a blank canv... 0
2 i feel like a faithful servant 2
3 i am just feeling cranky and blue 3
4 i can have for a treat or if i am feeling festive 1
... ... ...
1995 im having ssa examination tomorrow in the morn... 0
1996 i constantly worry about their fight against n... 1
1997 i feel its important to share this info for th... 1
1998 i truly feel that if you are passionate enough... 1
1999 i feel like i just wanna buy any cute make up ... 1
[2000 rows x 2 columns]
Index(['review', 'sentiment'], dtype='object')
review sentiment
0 One of the other reviewers has mentioned that ... positive
1 A wonderful little production. <br /><br />The... positive
2 I thought this was a wonderful way to spend ti... positive
3 Basically there's a family where a little boy ... negative
4 Petter Mattei's "Love in the Time of Money" is... positive
... ... ...
49995 I thought this movie did a down right good job... positive
49996 Bad plot, bad dialogue, bad acting, idiotic di... negative
49997 I am a Catholic taught in parochial elementary... negative
49998 I'm going to have to disagree with the previou... negative
49999 No one expects the Star Trek movies to be high... negative
[50000 rows x 2 columns]
if df_train['text'].isna().sum() > 0:
print("Warning: Some text entries are missing.")
df_train = df_train.dropna(subset=['text'])
emotion_labels = {
'sadness': 0,
'joy': 1,
'love': 2,
'anger': 3,
'fear': 4,
'surprise': 5
}
id_to_emotion = {id: label for label, id in emotion_labels.items()}
# Apply the inverse mapping to a new column for easy viewing
df_train['emotion_name'],df_test['emotion_name'] = df_train['label'].map(id_to_emotion), df_test['label'].map(id_to_emotion)
# Display the DataFrame to see both the integer label and the emotion name
df_train, df_test
# Filter for the first 20 rows
df_test_short = df_test[:50]
# Create a mapping from ID to name for printing
emotion_names = {v: k for k, v in emotion_labels.items()}
senti_labels = {
'positive': 0,
'negative': 1 }
id_to_senti = {id: sentiment for sentiment, id in senti_labels.items()}
# Create a mapping from ID to name for printing
senti_names = {v: k for k, v in senti_labels.items()}
X = df_senti['review']
y = df_senti['sentiment']
# Split the data into training and testing sets.
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.8, random_state=42)
Initialising Model¶
from huggingface_hub import login
# Log in to Hugging Face
login(token="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")
# Define the model name
model_name = "meta-llama/Llama-2-7b-chat-hf"
# Now load the model
try:
model_llama = HookedTransformer.from_pretrained(model_name, fold_ln=False, center_unembed=False, center_writing_weights=False)
print(f"Loaded {model_name} successfully.")
except Exception as e:
print(f"An error occurred: {e}")
Loading checkpoint shards: 100%|██████████| 2/2 [00:40<00:00, 20.17s/it]
Loaded pretrained model meta-llama/Llama-2-7b-chat-hf into HookedTransformer Loaded meta-llama/Llama-2-7b-chat-hf successfully.
tokenizer = model_llama.tokenizer
tokenizer
LlamaTokenizerFast(name_or_path='meta-llama/Llama-2-7b-chat-hf', vocab_size=32000, model_max_length=1000000000000000019884624838656, is_fast=True, padding_side='right', truncation_side='right', special_tokens={'bos_token': '<s>', 'eos_token': '</s>', 'unk_token': '<unk>', 'pad_token': '</s>'}, clean_up_tokenization_spaces=False, added_tokens_decoder={
0: AddedToken("<unk>", rstrip=False, lstrip=False, single_word=False, normalized=False, special=True),
1: AddedToken("<s>", rstrip=False, lstrip=False, single_word=False, normalized=False, special=True),
2: AddedToken("</s>", rstrip=False, lstrip=False, single_word=False, normalized=False, special=True),
}
)
single_prompt = "The cinema was slow but the acting was excellent. What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. The emotion is:"
tokens = model_llama.to_tokens(single_prompt)
print(tokens)
token_str = model_llama.to_str_tokens(single_prompt)
print(token_str)
print(tokens.shape)
tokens = tokens.cuda()
logits, cache = model_llama.run_with_cache(tokens)
print(f"logits shape",logits.shape)
print(logits[:1,:5,:5])
Convert logits to a distribution with softmax¶
probs = logits.log_softmax(dim=-1) print(probs.shape) probs[:1,:5,:5].max() probs.max()
last_sequence_in_batch = logits[0,-1,:] last_sequence_in_batch.shape
predict_token = last_sequence_in_batch.argmax(dim=-1) print(predict_token)
predict_token.item()
model_llama.tokenizer.decode(predict_token.item())
Constraint based prompting¶
print("\n--- Zero-Shot vs. Constraint-Based Prompting Comparison ---")
print("This will process the same text with two different prompts to compare the results.")
true_emotions = []
predicted_emotions = []
results_list = []
for i, row in df_test[:].iterrows():
text = row['text']
true_label_id = row['label']
true_label_name = row['emotion_name'] #emotion_names.get(true_label_id, "unknown")
# --- Case 1: Zero-Shot Prompting ---
zero_shot_prompt = f"{text}\nWhat is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise."
# Tokenize and move to GPU
inputs_zero = tokenizer(zero_shot_prompt, return_tensors="pt")
if torch.cuda.is_available():
inputs_zero = {k: v.to('cuda') for k, v in inputs_zero.items()}
# Generate the next 10 tokens
output_tokens_zero = model_llama.generate(
inputs_zero['input_ids'],
max_new_tokens=10,
do_sample=False,
)
# Isolate the newly generated tokens for the zero-shot case
new_tokens_zero = tokenizer.decode(output_tokens_zero[0][inputs_zero['input_ids'].shape[1]:], skip_special_tokens=True)
# Extract the predicted emotion from the generated text
predicted_zero_shot = "unknown"
for emotion_name in emotion_labels.keys():
if emotion_name in new_tokens_zero.lower():
predicted_zero_shot = emotion_name
break
# --- Case 2: Constraint-Based Prompting ---
constraint_prompt = f"{text}\nWhat is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is:"
# Tokenize and move to GPU
inputs_constraint = tokenizer(constraint_prompt, return_tensors="pt")
if torch.cuda.is_available():
inputs_constraint = {k: v.to('cuda') for k, v in inputs_constraint.items()}
# Generate the next 10 tokens
output_tokens_constraint = model_llama.generate(
inputs_constraint['input_ids'],
max_new_tokens=10,
do_sample=False,
)
# Isolate the newly generated tokens for the constraint-based case
predicted_new_tokens_constraint = tokenizer.decode(output_tokens_constraint[0][inputs_constraint['input_ids'].shape[1]:], skip_special_tokens=True)
# Extract the predicted emotion from the generated text
predicted_constraint = "unknown"
cleaned_output = predicted_new_tokens_constraint.strip().lower()
for word in cleaned_output.replace("a. ", "").replace("b. ", "").replace("\n", " ").split():
clean_word = word.strip(".,:;").lower()
if clean_word in emotion_labels.keys():
predicted_constraint = clean_word
break
true_emotions.append(true_label_name)
predicted_emotions.append(predicted_constraint)#predicted_emotions.append(cleaned_output)
status = 1 if true_label_name == predicted_constraint else 0
results_list.append({
'text': text,
'emotion': true_label_name,
'constrained prompt': f"{text}\nWhat the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is:",
'prompt response' : cleaned_output,
'predicted emotion': predicted_constraint,
'Output status': status
})
# --- Print Comparison Results ---
print(f"\n--- Text {i+1} ---")
print(f"Text: '{text}'")
print(f"True Emotion: {true_label_name}")
print("\n--- Zero-Shot Prompting ---")
print(f"Prompt: {zero_shot_prompt}")
print(f"Generated Output: {new_tokens_zero.strip()}")
print(f"Predicted Emotion: {predicted_zero_shot}")
print("\n--- Constraint-Based Prompting ---")
print(f"Prompt: {constraint_prompt}")
print(f"Generated Output: {predicted_new_tokens_constraint.strip()}")
print(f"Predicted Emotion: {predicted_constraint}")
print("-" * 20)
--- Zero-Shot vs. Constraint-Based Prompting Comparison --- This will process the same text with two different prompts to compare the results.
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.31it/s]
--- Text 1 --- Text: 'im feeling rather rotten so im not very ambitious right now' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im feeling rather rotten so im not very ambitious right now What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling rather rotten so im not very ambitious right now What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.70it/s]
--- Text 2 --- Text: 'im updating my blog because i feel shitty' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im updating my blog because i feel shitty What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im updating my blog because i feel shitty What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 8.58it/s]
--- Text 3 --- Text: 'i never make her separate from me because i don t ever want her to feel like i m ashamed with her' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i never make her separate from me because i don t ever want her to feel like i m ashamed with her What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i never make her separate from me because i don t ever want her to feel like i m ashamed with her What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.93it/s]
--- Text 4 --- Text: 'i left with my bouquet of red and yellow tulips under my arm feeling slightly more optimistic than when i arrived' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i left with my bouquet of red and yellow tulips under my arm feeling slightly more optimistic than when i arrived What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i left with my bouquet of red and yellow tulips under my arm feeling slightly more optimistic than when i arrived What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Optimism Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.26it/s]
--- Text 5 --- Text: 'i was feeling a little vain when i did this one' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i was feeling a little vain when i did this one What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was feeling a little vain when i did this one What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: i was feeling a little vain when i Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.99it/s]
--- Text 6 --- Text: 'i cant walk into a shop anywhere where i do not feel uncomfortable' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i cant walk into a shop anywhere where i do not feel uncomfortable What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i cant walk into a shop anywhere where i do not feel uncomfortable What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: i cant walk into a shop anywhere where Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.44it/s] 20%|██ | 2/10 [00:00<00:00, 9.53it/s]
--- Text 7 --- Text: 'i felt anger when at the end of a telephone call' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i felt anger when at the end of a telephone call What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i felt anger when at the end of a telephone call What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger. Predicted Emotion: anger --------------------
100%|██████████| 10/10 [00:00<00:00, 16.62it/s] 100%|██████████| 10/10 [00:00<00:00, 16.29it/s]
--- Text 8 --- Text: 'i explain why i clung to a relationship with a boy who was in many ways immature and uncommitted despite the excitement i should have been feeling for getting accepted into the masters program at the university of virginia' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i explain why i clung to a relationship with a boy who was in many ways immature and uncommitted despite the excitement i should have been feeling for getting accepted into the masters program at the university of virginia What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i explain why i clung to a relationship with a boy who was in many ways immature and uncommitted despite the excitement i should have been feeling for getting accepted into the masters program at the university of virginia What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. The text explains why the speaker Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.45it/s] 100%|██████████| 10/10 [00:00<00:00, 16.95it/s]
--- Text 9 --- Text: 'i like to have the same breathless feeling as a reader eager to see what will happen next' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i like to have the same breathless feeling as a reader eager to see what will happen next What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is excitement. Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i like to have the same breathless feeling as a reader eager to see what will happen next What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I like to have the same breathless Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.66it/s]
--- Text 10 --- Text: 'i jest i feel grumpy tired and pre menstrual which i probably am but then again its only been a week and im about as fit as a walrus on vacation for the summer' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i jest i feel grumpy tired and pre menstrual which i probably am but then again its only been a week and im about as fit as a walrus on vacation for the summer What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i jest i feel grumpy tired and pre menstrual which i probably am but then again its only been a week and im about as fit as a walrus on vacation for the summer What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Grumpiness Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.54it/s] 100%|██████████| 10/10 [00:00<00:00, 17.03it/s]
--- Text 11 --- Text: 'i don t feel particularly agitated' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i don t feel particularly agitated What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i don t feel particularly agitated What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: NONE OF THE ABOVE Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.02it/s]
--- Text 12 --- Text: 'i feel beautifully emotional knowing that these women of whom i knew just a handful were holding me and my baba on our journey' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel beautifully emotional knowing that these women of whom i knew just a handful were holding me and my baba on our journey What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel beautifully emotional knowing that these women of whom i knew just a handful were holding me and my baba on our journey What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.39it/s]
--- Text 13 --- Text: 'i pay attention it deepens into a feeling of being invaded and helpless' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i pay attention it deepens into a feeling of being invaded and helpless What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i pay attention it deepens into a feeling of being invaded and helpless What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.42it/s]
--- Text 14 --- Text: 'i just feel extremely comfortable with the group of people that i dont even need to hide myself' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i just feel extremely comfortable with the group of people that i dont even need to hide myself What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i just feel extremely comfortable with the group of people that i dont even need to hide myself What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Comfort Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.44it/s] 20%|██ | 2/10 [00:00<00:00, 9.52it/s]
--- Text 15 --- Text: 'i find myself in the odd position of feeling supportive of' True Emotion: love --- Zero-Shot Prompting --- Prompt: i find myself in the odd position of feeling supportive of What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i find myself in the odd position of feeling supportive of What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 16.93it/s] 50%|█████ | 5/10 [00:00<00:00, 13.45it/s]
--- Text 16 --- Text: 'i was feeling as heartbroken as im sure katniss was' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i was feeling as heartbroken as im sure katniss was What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i was feeling as heartbroken as im sure katniss was What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.89it/s]
--- Text 17 --- Text: 'i feel a little mellow today' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel a little mellow today What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel a little mellow today What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: mellow Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.40it/s]
--- Text 18 --- Text: 'i feel like my only role now would be to tear your sails with my pessimism and discontent' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like my only role now would be to tear your sails with my pessimism and discontent What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like my only role now would be to tear your sails with my pessimism and discontent What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.10it/s] 30%|███ | 3/10 [00:00<00:00, 10.67it/s]
--- Text 19 --- Text: 'i feel just bcoz a fight we get mad to each other n u wanna make a publicity n let the world knows about our fight' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel just bcoz a fight we get mad to each other n u wanna make a publicity n let the world knows about our fight What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i feel just bcoz a fight we get mad to each other n u wanna make a publicity n let the world knows about our fight What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.38it/s]
--- Text 20 --- Text: 'i feel like reds and purples are just so rich and kind of perfect' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like reds and purples are just so rich and kind of perfect What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like reds and purples are just so rich and kind of perfect What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.74it/s] 40%|████ | 4/10 [00:00<00:00, 11.85it/s]
--- Text 21 --- Text: 'im not sure the feeling of loss will ever go away but it may dull to a sweet feeling of nostalgia at what i shared in this life with my dad and the luck i had to have a dad for years' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im not sure the feeling of loss will ever go away but it may dull to a sweet feeling of nostalgia at what i shared in this life with my dad and the luck i had to have a dad for years What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: im not sure the feeling of loss will ever go away but it may dull to a sweet feeling of nostalgia at what i shared in this life with my dad and the luck i had to have a dad for years What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.68it/s]
--- Text 22 --- Text: 'i feel like ive gotten to know many of you through comments and emails and for that im appreciative and glad you are a part of this little space' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like ive gotten to know many of you through comments and emails and for that im appreciative and glad you are a part of this little space What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like ive gotten to know many of you through comments and emails and for that im appreciative and glad you are a part of this little space What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.51it/s]
--- Text 23 --- Text: 'i survey my own posts over the last few years and only feel pleased with vague snippets of a few of them only feel that little bits of them capture what its like to be me or someone like me in dublin in the st century' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i survey my own posts over the last few years and only feel pleased with vague snippets of a few of them only feel that little bits of them capture what its like to be me or someone like me in dublin in the st century What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i survey my own posts over the last few years and only feel pleased with vague snippets of a few of them only feel that little bits of them capture what its like to be me or someone like me in dublin in the st century What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.32it/s]
--- Text 24 --- Text: 'i also tell you in hopes that anyone who is still feeling stigmatized or ashamed of their mental health issues will let go of the stigma let go of the shame' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i also tell you in hopes that anyone who is still feeling stigmatized or ashamed of their mental health issues will let go of the stigma let go of the shame What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i also tell you in hopes that anyone who is still feeling stigmatized or ashamed of their mental health issues will let go of the stigma let go of the shame What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: The emotion of this text is: hope Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.37it/s] 50%|█████ | 5/10 [00:00<00:00, 13.26it/s]
--- Text 25 --- Text: 'i don t feel guilty like i m not going to be able to cook for him' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i don t feel guilty like i m not going to be able to cook for him What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i don t feel guilty like i m not going to be able to cook for him What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.72it/s] 20%|██ | 2/10 [00:00<00:00, 9.55it/s]
--- Text 26 --- Text: 'i hate it when i feel fearful for absolutely no reason' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i hate it when i feel fearful for absolutely no reason What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i hate it when i feel fearful for absolutely no reason What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear. Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.44it/s]
--- Text 27 --- Text: 'i am feeling outraged it shows everywhere' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i am feeling outraged it shows everywhere What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling outraged it shows everywhere What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
100%|██████████| 10/10 [00:00<00:00, 17.22it/s] 50%|█████ | 5/10 [00:00<00:00, 12.54it/s]
--- Text 28 --- Text: 'i stole a book from one of my all time favorite authors and now i feel like a rotten person' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i stole a book from one of my all time favorite authors and now i feel like a rotten person What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is guilt Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i stole a book from one of my all time favorite authors and now i feel like a rotten person What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.20it/s]
--- Text 29 --- Text: 'i do feel insecure sometimes but who doesnt' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i do feel insecure sometimes but who doesnt What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i do feel insecure sometimes but who doesnt What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I do feel insecure sometimes but who Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.37it/s]
--- Text 30 --- Text: 'i highly recommend visiting on a wednesday if youre able because its less crowded so you get to ask the farmers more questions without feeling rude for holding up a line' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i highly recommend visiting on a wednesday if youre able because its less crowded so you get to ask the farmers more questions without feeling rude for holding up a line What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i highly recommend visiting on a wednesday if youre able because its less crowded so you get to ask the farmers more questions without feeling rude for holding up a line What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: The text recommends visiting a far Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.50it/s] 40%|████ | 4/10 [00:00<00:00, 12.70it/s]
--- Text 31 --- Text: 'ive been missing him and feeling so restless at home thinking of him' True Emotion: fear --- Zero-Shot Prompting --- Prompt: ive been missing him and feeling so restless at home thinking of him What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: ive been missing him and feeling so restless at home thinking of him What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.30it/s] 50%|█████ | 5/10 [00:00<00:00, 12.68it/s]
--- Text 32 --- Text: 'i posted on my facebook page earlier this week ive been feeling a little grumpy and out of sorts the past few days' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i posted on my facebook page earlier this week ive been feeling a little grumpy and out of sorts the past few days What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: grumpy The emotion of this Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i posted on my facebook page earlier this week ive been feeling a little grumpy and out of sorts the past few days What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 80%|████████ | 8/10 [00:00<00:00, 15.39it/s]
--- Text 33 --- Text: 'i start to feel emotional' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i start to feel emotional What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i start to feel emotional What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I start to feel emotional Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.50it/s] 20%|██ | 2/10 [00:00<00:00, 9.20it/s]
--- Text 34 --- Text: 'i feel so cold a href http irish' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel so cold a href http irish What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i feel so cold a href http irish What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: cold. Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.50it/s] 40%|████ | 4/10 [00:00<00:00, 12.70it/s]
--- Text 35 --- Text: 'i feel like i m defective or something for not having baby fever' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like i m defective or something for not having baby fever What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i feel like i m defective or something for not having baby fever What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.41it/s]
--- Text 36 --- Text: 'i feel more virtuous than when i eat veggies dipped in hummus' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel more virtuous than when i eat veggies dipped in hummus What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel more virtuous than when i eat veggies dipped in hummus What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.27it/s] 100%|██████████| 10/10 [00:00<00:00, 16.01it/s]
--- Text 37 --- Text: 'i feel very honoured to be included in a magzine which prioritises health and clean living so highly im curious do any of you read magazines concerned with health and clean lifestyles such as the green parent' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel very honoured to be included in a magzine which prioritises health and clean living so highly im curious do any of you read magazines concerned with health and clean lifestyles such as the green parent What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Cur Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel very honoured to be included in a magzine which prioritises health and clean living so highly im curious do any of you read magazines concerned with health and clean lifestyles such as the green parent What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel very honoured to be included Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.05it/s] 40%|████ | 4/10 [00:00<00:00, 12.30it/s]
--- Text 38 --- Text: 'i spent the last two weeks of school feeling miserable' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i spent the last two weeks of school feeling miserable What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i spent the last two weeks of school feeling miserable What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.02it/s] 50%|█████ | 5/10 [00:00<00:00, 12.97it/s]
--- Text 39 --- Text: 'im feeling very peaceful about our wedding again now after having' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im feeling very peaceful about our wedding again now after having What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: im feeling very peaceful about our wedding again now after having What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: peaceful Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.67it/s]
--- Text 40 --- Text: 'i had been talking to coach claudia barcomb and coach ali boe for a long time and they both made me feel very welcomed at union' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i had been talking to coach claudia barcomb and coach ali boe for a long time and they both made me feel very welcomed at union What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i had been talking to coach claudia barcomb and coach ali boe for a long time and they both made me feel very welcomed at union What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.55it/s] 30%|███ | 3/10 [00:00<00:00, 10.35it/s]
--- Text 41 --- Text: 'i feel if i completely hated things i d exercise my democratic right speak my mind in what ever ways possible and try to enact a change' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel if i completely hated things i d exercise my democratic right speak my mind in what ever ways possible and try to enact a change What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i feel if i completely hated things i d exercise my democratic right speak my mind in what ever ways possible and try to enact a change What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 60%|██████ | 6/10 [00:00<00:00, 13.29it/s]
--- Text 42 --- Text: 'i feel humiliated embarrassed or foolish i will remember that others have felt the same way because of the same kinds of things and i will be kind and helpful and accepting' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel humiliated embarrassed or foolish i will remember that others have felt the same way because of the same kinds of things and i will be kind and helpful and accepting What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel humiliated embarrassed or foolish i will remember that others have felt the same way because of the same kinds of things and i will be kind and helpful and accepting What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: embarrassment Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.64it/s]
--- Text 43 --- Text: 'i feel reassured that i am dealing with my diet in the right way and that all is good' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel reassured that i am dealing with my diet in the right way and that all is good What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel reassured that i am dealing with my diet in the right way and that all is good What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.78it/s]
--- Text 44 --- Text: 'i feel i have to agree with her even though i can imagine some rather unpleasant possible cases' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel i have to agree with her even though i can imagine some rather unpleasant possible cases What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel i have to agree with her even though i can imagine some rather unpleasant possible cases What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel I have to agree with her Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.61it/s]
--- Text 45 --- Text: 'im in such a happy mood today i feel almost delighted and i havent done anything different today then i normally have it is wonderful' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im in such a happy mood today i feel almost delighted and i havent done anything different today then i normally have it is wonderful What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im in such a happy mood today i feel almost delighted and i havent done anything different today then i normally have it is wonderful What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.74it/s]
--- Text 46 --- Text: 'im feeling really out of place and irritated' True Emotion: anger --- Zero-Shot Prompting --- Prompt: im feeling really out of place and irritated What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling really out of place and irritated What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: irritation. Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.28it/s]
--- Text 47 --- Text: 'i also know that i feel nothing than a friendly affection to them too' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i also know that i feel nothing than a friendly affection to them too What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i also know that i feel nothing than a friendly affection to them too What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: NONE OF THE ABOVE Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.38it/s]
--- Text 48 --- Text: 'i feel like i had a rather productive weekend and i cant always say that no matter how much i get done' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like i had a rather productive weekend and i cant always say that no matter how much i get done What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like i had a rather productive weekend and i cant always say that no matter how much i get done What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.63it/s]
--- Text 49 --- Text: 'im feeling insecure at the moment' True Emotion: fear --- Zero-Shot Prompting --- Prompt: im feeling insecure at the moment What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling insecure at the moment What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: insecurity Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.33it/s]
--- Text 50 --- Text: 'i was feeling pretty anxious all day but my first day at work was a very good day and that helped a lot' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i was feeling pretty anxious all day but my first day at work was a very good day and that helped a lot What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was feeling pretty anxious all day but my first day at work was a very good day and that helped a lot What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.95it/s]
--- Text 51 --- Text: 'i stood up to you i finally stood up to you and now i feel like im being punished if i could go back and do it again' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i stood up to you i finally stood up to you and now i feel like im being punished if i could go back and do it again What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i stood up to you i finally stood up to you and now i feel like im being punished if i could go back and do it again What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.56it/s] 40%|████ | 4/10 [00:00<00:00, 12.68it/s]
--- Text 52 --- Text: 'i feel a little nervous i go to the gym' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel a little nervous i go to the gym What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i feel a little nervous i go to the gym What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear Predicted Emotion: fear --------------------
100%|██████████| 10/10 [00:00<00:00, 17.02it/s] 100%|██████████| 10/10 [00:00<00:00, 16.48it/s]
--- Text 53 --- Text: 'i feel like i could go into any situation and become successful because i ve been competing all my life explained schaub in an interview with the a href http bleacherreport' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like i could go into any situation and become successful because i ve been competing all my life explained schaub in an interview with the a href http bleacherreport What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is confidence. Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like i could go into any situation and become successful because i ve been competing all my life explained schaub in an interview with the a href http bleacherreport What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.45it/s] 20%|██ | 2/10 [00:00<00:00, 9.16it/s]
--- Text 54 --- Text: 'i can t stop the anxiety i feel when i m alone when i ve got no distractions' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i can t stop the anxiety i feel when i m alone when i ve got no distractions What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i can t stop the anxiety i feel when i m alone when i ve got no distractions What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear. Predicted Emotion: fear --------------------
100%|██████████| 10/10 [00:00<00:00, 17.19it/s] 60%|██████ | 6/10 [00:00<00:00, 14.22it/s]
--- Text 55 --- Text: 'im trying to feel out my house style now that im living on my own and have creative carte blanche' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im trying to feel out my house style now that im living on my own and have creative carte blanche What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im trying to feel out my house style now that im living on my own and have creative carte blanche What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Nervousness Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.68it/s]
--- Text 56 --- Text: 'i have tried to see what it would be like if i liked one of my girl friends but it has never really worked and i can only ever feel an emotional connection to them because they are my friends' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i have tried to see what it would be like if i liked one of my girl friends but it has never really worked and i can only ever feel an emotional connection to them because they are my friends What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have tried to see what it would be like if i liked one of my girl friends but it has never really worked and i can only ever feel an emotional connection to them because they are my friends What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.66it/s]
--- Text 57 --- Text: 'i had every intention of doing more gardening this morning while it was still cool but i was just feeling so rotten' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i had every intention of doing more gardening this morning while it was still cool but i was just feeling so rotten What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i had every intention of doing more gardening this morning while it was still cool but i was just feeling so rotten What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.24it/s]
--- Text 58 --- Text: 'i have a good feeling about this so i am excited' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i have a good feeling about this so i am excited What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have a good feeling about this so i am excited What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Excitement Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.27it/s] 40%|████ | 4/10 [00:00<00:00, 11.85it/s]
--- Text 59 --- Text: 'i feel like i am just starting to understand the blessings that come from being submissive to the will of the father' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like i am just starting to understand the blessings that come from being submissive to the will of the father What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like i am just starting to understand the blessings that come from being submissive to the will of the father What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.87it/s]
--- Text 60 --- Text: 'i think about the things ive said and the stuff i have done it makes me feel disgusted in myself when i should be making you happy and smile which i was far from doing' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i think about the things ive said and the stuff i have done it makes me feel disgusted in myself when i should be making you happy and smile which i was far from doing What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i think about the things ive said and the stuff i have done it makes me feel disgusted in myself when i should be making you happy and smile which i was far from doing What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.74it/s] 50%|█████ | 5/10 [00:00<00:00, 13.58it/s]
--- Text 61 --- Text: 'i woke up yesterday monday morning feeling a little depressed' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i woke up yesterday monday morning feeling a little depressed What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i woke up yesterday monday morning feeling a little depressed What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 60%|██████ | 6/10 [00:00<00:00, 14.47it/s]
--- Text 62 --- Text: 'i feel so embarrassed' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel so embarrassed What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so embarrassed What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: embarrassment Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.54it/s]
--- Text 63 --- Text: 'i spent wandering around still kinda dazed and not feeling particularly sociable but because id been in hiding for a couple for days and it was getting to be a little unhealthy i made myself go down to the cross and hang out with folks' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i spent wandering around still kinda dazed and not feeling particularly sociable but because id been in hiding for a couple for days and it was getting to be a little unhealthy i made myself go down to the cross and hang out with folks What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i spent wandering around still kinda dazed and not feeling particularly sociable but because id been in hiding for a couple for days and it was getting to be a little unhealthy i made myself go down to the cross and hang out with folks What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.11it/s]
--- Text 64 --- Text: 'i can honestly say that after each sistahs chat i feel invigorated and blessed' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i can honestly say that after each sistahs chat i feel invigorated and blessed What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i can honestly say that after each sistahs chat i feel invigorated and blessed What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.49it/s]
--- Text 65 --- Text: 'i still feel stupid to be in that class this is all cause off pbss fault' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i still feel stupid to be in that class this is all cause off pbss fault What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i still feel stupid to be in that class this is all cause off pbss fault What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.02it/s]
--- Text 66 --- Text: 'i feel a little stunned but can t imagine what the folks who were working in the studio up until this morning are feeling' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i feel a little stunned but can t imagine what the folks who were working in the studio up until this morning are feeling What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel a little stunned but can t imagine what the folks who were working in the studio up until this morning are feeling What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Surprise Predicted Emotion: surprise --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.57it/s]
--- Text 67 --- Text: 'i admit im feeling a little bit unloved at this point' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i admit im feeling a little bit unloved at this point What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i admit im feeling a little bit unloved at this point What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.37it/s]
--- Text 68 --- Text: 'i feel a bit stressed even though all the things i have going on are fun' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel a bit stressed even though all the things i have going on are fun What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel a bit stressed even though all the things i have going on are fun What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: stress Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.51it/s]
--- Text 69 --- Text: 'im feeling pretty anxious' True Emotion: fear --- Zero-Shot Prompting --- Prompt: im feeling pretty anxious What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling pretty anxious What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anxiety Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.52it/s] 50%|█████ | 5/10 [00:00<00:00, 13.56it/s]
--- Text 70 --- Text: 'i feel shocked and sad at the fact that there are so many sick people' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i feel shocked and sad at the fact that there are so many sick people What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel shocked and sad at the fact that there are so many sick people What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.14it/s] 30%|███ | 3/10 [00:00<00:00, 9.95it/s]
--- Text 71 --- Text: 'i think they have always been proponents of the idea and it is just slightly possible that his feelings for a particularly charming new england girl have brought him around to their way of thinking' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i think they have always been proponents of the idea and it is just slightly possible that his feelings for a particularly charming new england girl have brought him around to their way of thinking What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i think they have always been proponents of the idea and it is just slightly possible that his feelings for a particularly charming new england girl have brought him around to their way of thinking What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.35it/s] 50%|█████ | 5/10 [00:00<00:00, 13.26it/s]
--- Text 72 --- Text: 'i feel like a naughty school girl because i am falling behind' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel like a naughty school girl because i am falling behind What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i feel like a naughty school girl because i am falling behind What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.78it/s] 50%|█████ | 5/10 [00:00<00:00, 13.55it/s]
--- Text 73 --- Text: 'i am right handed however i play billiards left handed naturally so me trying to play right handed feels weird' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i am right handed however i play billiards left handed naturally so me trying to play right handed feels weird What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am right handed however i play billiards left handed naturally so me trying to play right handed feels weird What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Naturally Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.71it/s]
--- Text 74 --- Text: 'i can feel that they are kind friendly and can understand my feelings' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i can feel that they are kind friendly and can understand my feelings What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i can feel that they are kind friendly and can understand my feelings What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.28it/s] 50%|█████ | 5/10 [00:00<00:00, 12.68it/s]
--- Text 75 --- Text: 'i were to go overseas or cross the border then i become a foreigner and will feel that way but never in my beloved land' True Emotion: love --- Zero-Shot Prompting --- Prompt: i were to go overseas or cross the border then i become a foreigner and will feel that way but never in my beloved land What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i were to go overseas or cross the border then i become a foreigner and will feel that way but never in my beloved land What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.24it/s]
--- Text 76 --- Text: 'i feel disgusted in any man in power who talks about electricity being a problem in his area and says even my own house has similar problems' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel disgusted in any man in power who talks about electricity being a problem in his area and says even my own house has similar problems What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel disgusted in any man in power who talks about electricity being a problem in his area and says even my own house has similar problems What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
100%|██████████| 10/10 [00:00<00:00, 17.38it/s] 40%|████ | 4/10 [00:00<00:00, 12.91it/s]
--- Text 77 --- Text: 'i feel transcendant and splendid' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel transcendant and splendid What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i feel transcendant and splendid What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.89it/s] 60%|██████ | 6/10 [00:00<00:00, 13.55it/s]
--- Text 78 --- Text: 'i finally arrived home a couple of hours later feeling somewhat exhausted dehydrated and even sun burnt' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i finally arrived home a couple of hours later feeling somewhat exhausted dehydrated and even sun burnt What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is exhaustion Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i finally arrived home a couple of hours later feeling somewhat exhausted dehydrated and even sun burnt What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Exhaustion Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.71it/s]
--- Text 79 --- Text: 'i am feeling totally relaxed and comfy' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am feeling totally relaxed and comfy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling totally relaxed and comfy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: comfort Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.57it/s]
--- Text 80 --- Text: 'i want each of you to feel my gentle embrace' True Emotion: love --- Zero-Shot Prompting --- Prompt: i want each of you to feel my gentle embrace What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i want each of you to feel my gentle embrace What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.31it/s] 40%|████ | 4/10 [00:00<00:00, 12.44it/s]
--- Text 81 --- Text: 'i feel privileged in my world' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel privileged in my world What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i feel privileged in my world What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.58it/s]
--- Text 82 --- Text: 'i am not a people person but for some fuckin reason people feel that they can come bore me with their fuckin petty garbage' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i am not a people person but for some fuckin reason people feel that they can come bore me with their fuckin petty garbage What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am not a people person but for some fuckin reason people feel that they can come bore me with their fuckin petty garbage What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.64it/s]
--- Text 83 --- Text: 'i realized my mistake and i m really feeling terrible and thinking that i shouldn t do that' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i realized my mistake and i m really feeling terrible and thinking that i shouldn t do that What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i realized my mistake and i m really feeling terrible and thinking that i shouldn t do that What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.42it/s]
--- Text 84 --- Text: 'i suppose i feel too trusting sometimes' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i suppose i feel too trusting sometimes What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i suppose i feel too trusting sometimes What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: i suppose i feel too trusting sometimes Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.78it/s]
--- Text 85 --- Text: 'i came home waiting for the shower read something which made me upset thats why i feel discontent haha' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i came home waiting for the shower read something which made me upset thats why i feel discontent haha What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i came home waiting for the shower read something which made me upset thats why i feel discontent haha What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.66it/s]
--- Text 86 --- Text: 'i woke up feeling crappy tired and fighting this feeling all day maybe it is all the pollen the barometric pressure i dont know i know i was off kilter' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i woke up feeling crappy tired and fighting this feeling all day maybe it is all the pollen the barometric pressure i dont know i know i was off kilter What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i woke up feeling crappy tired and fighting this feeling all day maybe it is all the pollen the barometric pressure i dont know i know i was off kilter What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.01it/s]
--- Text 87 --- Text: 'i feel like i am in paradise kissing those sweet lips make me feel like i dive into a magical world of love' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like i am in paradise kissing those sweet lips make me feel like i dive into a magical world of love What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like i am in paradise kissing those sweet lips make me feel like i dive into a magical world of love What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.84it/s]
--- Text 88 --- Text: 'i am feeling so happy' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am feeling so happy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling so happy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: happiness Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.13it/s]
--- Text 89 --- Text: 'i am running at an approximate minute pace which i feel is quite acceptable' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am running at an approximate minute pace which i feel is quite acceptable What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am running at an approximate minute pace which i feel is quite acceptable What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.50it/s] 40%|████ | 4/10 [00:00<00:00, 12.70it/s]
--- Text 90 --- Text: 'i feel so disappointed when my ex girlfriend doesn t call me back' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel so disappointed when my ex girlfriend doesn t call me back What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel so disappointed when my ex girlfriend doesn t call me back What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.41it/s]
--- Text 91 --- Text: 'i have a feeling that people are using it more than they need to and enjoying the feeling as it flies carefree off the tongue but that is alright with me' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i have a feeling that people are using it more than they need to and enjoying the feeling as it flies carefree off the tongue but that is alright with me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have a feeling that people are using it more than they need to and enjoying the feeling as it flies carefree off the tongue but that is alright with me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.96it/s]
--- Text 92 --- Text: 'i am feeling uncertain of the merits of posting to this blog with the frequency or earnestness i had been over the previous year' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i am feeling uncertain of the merits of posting to this blog with the frequency or earnestness i had been over the previous year What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling uncertain of the merits of posting to this blog with the frequency or earnestness i had been over the previous year What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Uncertainty Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.81it/s] 30%|███ | 3/10 [00:00<00:00, 11.45it/s]
--- Text 93 --- Text: 'i just plain feel envious of the self confidence they had' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i just plain feel envious of the self confidence they had What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is envy Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i just plain feel envious of the self confidence they had What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Envy Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.47it/s] 50%|█████ | 5/10 [00:00<00:00, 13.55it/s]
--- Text 94 --- Text: 'i was feeling weird the other day and it went away about minutes after i took my metformin' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i was feeling weird the other day and it went away about minutes after i took my metformin What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was feeling weird the other day and it went away about minutes after i took my metformin What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: N/A Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.45it/s]
--- Text 95 --- Text: 'when a friend dropped a frog down my neck' True Emotion: anger --- Zero-Shot Prompting --- Prompt: when a friend dropped a frog down my neck What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: when a friend dropped a frog down my neck What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: surprise Predicted Emotion: surprise --------------------
100%|██████████| 10/10 [00:00<00:00, 16.67it/s] 30%|███ | 3/10 [00:00<00:00, 11.08it/s]
--- Text 96 --- Text: 'im feeling angry at someone i do something thoughtful for her and my feelings toward her soften' True Emotion: anger --- Zero-Shot Prompting --- Prompt: im feeling angry at someone i do something thoughtful for her and my feelings toward her soften What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling angry at someone i do something thoughtful for her and my feelings toward her soften What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.29it/s]
--- Text 97 --- Text: 'i love neglecting this blog but sometimes i feel for my faithful readers' True Emotion: love --- Zero-Shot Prompting --- Prompt: i love neglecting this blog but sometimes i feel for my faithful readers What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i love neglecting this blog but sometimes i feel for my faithful readers What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.83it/s]
--- Text 98 --- Text: 'i lay in bed feeling as though i were awaiting an unwelcome visitor nevertheless i told myself i was strong and thought of good things until i felt better' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i lay in bed feeling as though i were awaiting an unwelcome visitor nevertheless i told myself i was strong and thought of good things until i felt better What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i lay in bed feeling as though i were awaiting an unwelcome visitor nevertheless i told myself i was strong and thought of good things until i felt better What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B. Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.75it/s] 50%|█████ | 5/10 [00:00<00:00, 13.33it/s]
--- Text 99 --- Text: 'i feel my heart is tortured by what i have done' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel my heart is tortured by what i have done What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel my heart is tortured by what i have done What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.53it/s]
--- Text 100 --- Text: 'i was still feeling weepy and strung out so maggie treated me to ice cream and a movie a href http www' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i was still feeling weepy and strung out so maggie treated me to ice cream and a movie a href http www What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was still feeling weepy and strung out so maggie treated me to ice cream and a movie a href http www What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.76it/s]
--- Text 101 --- Text: 'i feel needy but comfortable with it i feel vulnerable but secure i feel the urge to cum hard but i get no relief' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel needy but comfortable with it i feel vulnerable but secure i feel the urge to cum hard but i get no relief What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel needy but comfortable with it i feel vulnerable but secure i feel the urge to cum hard but i get no relief What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Comfortable Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.15it/s] 40%|████ | 4/10 [00:00<00:00, 11.94it/s]
--- Text 102 --- Text: 'i journaled about my tendency to sometimes overcommit myself which can make me feel exhausted and overwhelmed' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i journaled about my tendency to sometimes overcommit myself which can make me feel exhausted and overwhelmed What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i journaled about my tendency to sometimes overcommit myself which can make me feel exhausted and overwhelmed What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Overwhelm Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 70%|███████ | 7/10 [00:00<00:00, 14.31it/s]
--- Text 103 --- Text: 'i started out feeling discouraged this morning' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i started out feeling discouraged this morning What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i started out feeling discouraged this morning What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: discouraged Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.29it/s] 50%|█████ | 5/10 [00:00<00:00, 12.67it/s]
--- Text 104 --- Text: 'i feel agitated with myself that i did not foresee her frustrations earlier leading to the ending of our relationship' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel agitated with myself that i did not foresee her frustrations earlier leading to the ending of our relationship What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel agitated with myself that i did not foresee her frustrations earlier leading to the ending of our relationship What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.29it/s]
--- Text 105 --- Text: 'i grab it from the air its smooth frame feels cold to the touch' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i grab it from the air its smooth frame feels cold to the touch What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i grab it from the air its smooth frame feels cold to the touch What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I grab it from the air its smooth Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.29it/s] 20%|██ | 2/10 [00:00<00:00, 8.47it/s]
--- Text 106 --- Text: 'i was angry at my boyfriend who had promised to come to see me but did not because he spent the evening with his pals' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i was angry at my boyfriend who had promised to come to see me but did not because he spent the evening with his pals What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i was angry at my boyfriend who had promised to come to see me but did not because he spent the evening with his pals What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger. Predicted Emotion: anger --------------------
100%|██████████| 10/10 [00:00<00:00, 16.93it/s] 50%|█████ | 5/10 [00:00<00:00, 12.94it/s]
--- Text 107 --- Text: 'i hate that i m sitting here at the hostel writing this and feeling so perfectly fine and than i get home and it s me and my problems and a wall' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i hate that i m sitting here at the hostel writing this and feeling so perfectly fine and than i get home and it s me and my problems and a wall What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i hate that i m sitting here at the hostel writing this and feeling so perfectly fine and than i get home and it s me and my problems and a wall What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.25it/s] 40%|████ | 4/10 [00:00<00:00, 12.24it/s]
--- Text 108 --- Text: 'i do exercise i feel energetic and i am able to perform my other tasks in a very good manner' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i do exercise i feel energetic and i am able to perform my other tasks in a very good manner What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i do exercise i feel energetic and i am able to perform my other tasks in a very good manner What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.26it/s]
--- Text 109 --- Text: 'i looked at mabel this morning i named my left breast mabel my right one is hazel and i feel this weird mixture of anger and loss valerie wrote less than a month after her diagnosis' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i looked at mabel this morning i named my left breast mabel my right one is hazel and i feel this weird mixture of anger and loss valerie wrote less than a month after her diagnosis What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i looked at mabel this morning i named my left breast mabel my right one is hazel and i feel this weird mixture of anger and loss valerie wrote less than a month after her diagnosis What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.95it/s]
--- Text 110 --- Text: 'im feeling pretty disheartened by the whole thing' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im feeling pretty disheartened by the whole thing What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling pretty disheartened by the whole thing What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: disheartened Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.73it/s]
--- Text 111 --- Text: 'i feel that an input from me will be valued as being less potent than say that of irfan pathan' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel that an input from me will be valued as being less potent than say that of irfan pathan What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel that an input from me will be valued as being less potent than say that of irfan pathan What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel that an input from me will Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.70it/s] 40%|████ | 4/10 [00:00<00:00, 12.57it/s]
--- Text 112 --- Text: 'i feel is he generous' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel is he generous What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i feel is he generous What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.83it/s]
--- Text 113 --- Text: 'i even feel a little shaky' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i even feel a little shaky What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i even feel a little shaky What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: surprise Predicted Emotion: surprise --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.57it/s]
--- Text 114 --- Text: 'i am feeling better though i dont sound it' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am feeling better though i dont sound it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling better though i dont sound it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.51it/s] 50%|█████ | 5/10 [00:00<00:00, 12.36it/s]
--- Text 115 --- Text: 'i always feel troubled when we re on the road touring living in a van or more recently in the circus buses no place to hang my hat as the song lyric has it' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i always feel troubled when we re on the road touring living in a van or more recently in the circus buses no place to hang my hat as the song lyric has it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i always feel troubled when we re on the road touring living in a van or more recently in the circus buses no place to hang my hat as the song lyric has it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.59it/s] 60%|██████ | 6/10 [00:00<00:00, 14.26it/s]
--- Text 116 --- Text: 'i feel our world then was a much more innocent place' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel our world then was a much more innocent place What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is nostalg Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel our world then was a much more innocent place What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Nostalgia Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.23it/s] 100%|██████████| 10/10 [00:00<00:00, 17.13it/s]
--- Text 117 --- Text: 'i feel thoroughly virtuous even if the daily trip to the compost bin isn t the most pleasant experience' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel thoroughly virtuous even if the daily trip to the compost bin isn t the most pleasant experience What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel thoroughly virtuous even if the daily trip to the compost bin isn t the most pleasant experience What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Nope, I'm afraid not Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.84it/s]
--- Text 118 --- Text: 'im not feeling anything suspicious really' True Emotion: fear --- Zero-Shot Prompting --- Prompt: im not feeling anything suspicious really What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im not feeling anything suspicious really What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.78it/s]
--- Text 119 --- Text: 'i was feeling a little sentimental today' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i was feeling a little sentimental today What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was feeling a little sentimental today What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.39it/s] 50%|█████ | 5/10 [00:00<00:00, 11.71it/s]
--- Text 120 --- Text: 'i feel like i know who most of them are by now and am starting to develop my likes and dislikes though i have not been keen on the snap evictions they have seemed pretty pointless the first one to go returned and the two webmates made absolutely zero impact on me so they won t be missed' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like i know who most of them are by now and am starting to develop my likes and dislikes though i have not been keen on the snap evictions they have seemed pretty pointless the first one to go returned and the two webmates made absolutely zero impact on me so they won t be missed What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like i know who most of them are by now and am starting to develop my likes and dislikes though i have not been keen on the snap evictions they have seemed pretty pointless the first one to go returned and the two webmates made absolutely zero impact on me so they won t be missed What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.38it/s]
--- Text 121 --- Text: 'i feel less whiney since the sun came out here in the sf area' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel less whiney since the sun came out here in the sf area What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel less whiney since the sun came out here in the sf area What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 80%|████████ | 8/10 [00:00<00:00, 15.40it/s]
--- Text 122 --- Text: 'made a wonderfull new friend' True Emotion: joy --- Zero-Shot Prompting --- Prompt: made a wonderfull new friend What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: made a wonderfull new friend What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: made a wonderfull new friend Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.82it/s]
--- Text 123 --- Text: 'i feel almost embarrassed to mention the single redshank and common sandpiper but there again who would not want to mention the lone wood sandpiper present at the waters edge' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel almost embarrassed to mention the single redshank and common sandpiper but there again who would not want to mention the lone wood sandpiper present at the waters edge What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel almost embarrassed to mention the single redshank and common sandpiper but there again who would not want to mention the lone wood sandpiper present at the waters edge What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.35it/s]
--- Text 124 --- Text: 'i know its easy to feel a little envious of me and i cant tell you that you shouldnt' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i know its easy to feel a little envious of me and i cant tell you that you shouldnt What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i know its easy to feel a little envious of me and i cant tell you that you shouldnt What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Envy Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.16it/s]
--- Text 125 --- Text: 'i would feel awful if she was here this whole time' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i would feel awful if she was here this whole time What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i would feel awful if she was here this whole time What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.52it/s]
--- Text 126 --- Text: 'i feel very mislead by someone that i really really thought i knew and liked very much so' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel very mislead by someone that i really really thought i knew and liked very much so What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel very mislead by someone that i really really thought i knew and liked very much so What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.43it/s] 50%|█████ | 5/10 [00:00<00:00, 13.01it/s]
--- Text 127 --- Text: 'i feel like we are doomed us humans' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like we are doomed us humans What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i feel like we are doomed us humans What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.67it/s]
--- Text 128 --- Text: 'i am going to have to check on in just a few minutes but there is this clock up above the screen that keeps ticking down the minutes i have left so am feeling a bit frantic' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i am going to have to check on in just a few minutes but there is this clock up above the screen that keeps ticking down the minutes i have left so am feeling a bit frantic What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am going to have to check on in just a few minutes but there is this clock up above the screen that keeps ticking down the minutes i have left so am feeling a bit frantic What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fear Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 60%|██████ | 6/10 [00:00<00:00, 13.41it/s]
--- Text 129 --- Text: 'i got the sleep but if i could choose not to be woken up by an alarm i d definitely take that over anything it makes me feel so groggy' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i got the sleep but if i could choose not to be woken up by an alarm i d definitely take that over anything it makes me feel so groggy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i got the sleep but if i could choose not to be woken up by an alarm i d definitely take that over anything it makes me feel so groggy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Grogginess Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.26it/s]
--- Text 130 --- Text: 'ive been boring for few weeks and feeling a bit gloomy cause of the rainy days' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: ive been boring for few weeks and feeling a bit gloomy cause of the rainy days What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: ive been boring for few weeks and feeling a bit gloomy cause of the rainy days What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.54it/s]
--- Text 131 --- Text: 'i feel that this information is vital to moving on with your day and you re not complete until you read it' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel that this information is vital to moving on with your day and you re not complete until you read it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel that this information is vital to moving on with your day and you re not complete until you read it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.46it/s] 100%|██████████| 10/10 [00:00<00:00, 17.04it/s]
--- Text 132 --- Text: 'im feeling generous today heres one more you may have already seen but is good for a chuckle' True Emotion: love --- Zero-Shot Prompting --- Prompt: im feeling generous today heres one more you may have already seen but is good for a chuckle What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: I just found out my wife is a robot Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling generous today heres one more you may have already seen but is good for a chuckle What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: "I have just eaten a whole Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.66it/s] 50%|█████ | 5/10 [00:00<00:00, 12.73it/s]
--- Text 133 --- Text: 'i will feel awkward about just calling up one of these people out of the blue to hang out or rather to be familiar with them on a deeper level they are not my kith and kin' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i will feel awkward about just calling up one of these people out of the blue to hang out or rather to be familiar with them on a deeper level they are not my kith and kin What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i will feel awkward about just calling up one of these people out of the blue to hang out or rather to be familiar with them on a deeper level they are not my kith and kin What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: A. Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.64it/s] 50%|█████ | 5/10 [00:00<00:00, 12.87it/s]
--- Text 134 --- Text: 'i don t like the feeling i get when someone is even a little bit offended by some offhand remark i ve made' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i don t like the feeling i get when someone is even a little bit offended by some offhand remark i ve made What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i don t like the feeling i get when someone is even a little bit offended by some offhand remark i ve made What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.95it/s]
--- Text 135 --- Text: 'i get it crumble but thanks for feeling the need to tell me that im the one who is fucked up' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i get it crumble but thanks for feeling the need to tell me that im the one who is fucked up What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i get it crumble but thanks for feeling the need to tell me that im the one who is fucked up What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.93it/s]
--- Text 136 --- Text: 'i am controlling the growth of this business and every time i post work for a client i feel even more determined to make it a full time business one day' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am controlling the growth of this business and every time i post work for a client i feel even more determined to make it a full time business one day What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am controlling the growth of this business and every time i post work for a client i feel even more determined to make it a full time business one day What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Determination Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.30it/s] 10%|█ | 1/10 [00:00<00:01, 5.45it/s]
--- Text 137 --- Text: 'i was pregnant with dean i spent the rest of my pregnancy feeling terrified about having another baby' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i was pregnant with dean i spent the rest of my pregnancy feeling terrified about having another baby What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i was pregnant with dean i spent the rest of my pregnancy feeling terrified about having another baby What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear Predicted Emotion: fear --------------------
100%|██████████| 10/10 [00:00<00:00, 16.96it/s] 40%|████ | 4/10 [00:00<00:00, 11.99it/s]
--- Text 138 --- Text: 'i actually feel agitated which led to a terrible day yesterday in which i was unable to concentrate on anything and basically piddled the day away' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i actually feel agitated which led to a terrible day yesterday in which i was unable to concentrate on anything and basically piddled the day away What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is agitation Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i actually feel agitated which led to a terrible day yesterday in which i was unable to concentrate on anything and basically piddled the day away What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: agitation Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.38it/s] 50%|█████ | 5/10 [00:00<00:00, 11.52it/s]
--- Text 139 --- Text: 'i have an ed i will tell you that i know i shouldn t feel shamed of eating a protein bar for breakfast and the fact that i ate one isn t what makes me shameful it s the fact i didn t make it is what made me hang my head and tuck tail' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i have an ed i will tell you that i know i shouldn t feel shamed of eating a protein bar for breakfast and the fact that i ate one isn t what makes me shameful it s the fact i didn t make it is what made me hang my head and tuck tail What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is shame. Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have an ed i will tell you that i know i shouldn t feel shamed of eating a protein bar for breakfast and the fact that i ate one isn t what makes me shameful it s the fact i didn t make it is what made me hang my head and tuck tail What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.07it/s] 30%|███ | 3/10 [00:00<00:00, 11.61it/s]
--- Text 140 --- Text: 'i feel radiant bright accomplished and happy' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel radiant bright accomplished and happy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i feel radiant bright accomplished and happy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.49it/s] 40%|████ | 4/10 [00:00<00:00, 12.69it/s]
--- Text 141 --- Text: 'i feel refrigerator magnets that were so popular a few years ago' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel refrigerator magnets that were so popular a few years ago What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel refrigerator magnets that were so popular a few years ago What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.55it/s]
--- Text 142 --- Text: 'i am feeling very touch deprived with all that has been happening' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i am feeling very touch deprived with all that has been happening What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling very touch deprived with all that has been happening What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.58it/s]
--- Text 143 --- Text: 'i am feeling apprehensive about it but also wildly excited' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i am feeling apprehensive about it but also wildly excited What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling apprehensive about it but also wildly excited What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Excitement Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.28it/s] 50%|█████ | 5/10 [00:00<00:00, 12.92it/s]
--- Text 144 --- Text: 'i was feeling pretty relaxed by the time i boarded the very new looking airbus and headed into the hazy sky en route to honolulu' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i was feeling pretty relaxed by the time i boarded the very new looking airbus and headed into the hazy sky en route to honolulu What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was feeling pretty relaxed by the time i boarded the very new looking airbus and headed into the hazy sky en route to honolulu What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B. Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.36it/s]
--- Text 145 --- Text: 'i am a quiet person but what i have to say i feel is important' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am a quiet person but what i have to say i feel is important What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am a quiet person but what i have to say i feel is important What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Importance Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.43it/s]
--- Text 146 --- Text: 'i think i started to feel a little homesick' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i think i started to feel a little homesick What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i think i started to feel a little homesick What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.09it/s]
--- Text 147 --- Text: 'i am feeling eager to start doing some work the man who works there literally says so uhm you guys want to go in back and see if we can find anything to do' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am feeling eager to start doing some work the man who works there literally says so uhm you guys want to go in back and see if we can find anything to do What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling eager to start doing some work the man who works there literally says so uhm you guys want to go in back and see if we can find anything to do What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.16it/s] 50%|█████ | 5/10 [00:00<00:00, 12.70it/s]
--- Text 148 --- Text: 'i feel uncomfortable since i have a smaller rib cage and a bigger chest either i am spilling over the top of the tank or the elastic band support is too tight or too loose' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel uncomfortable since i have a smaller rib cage and a bigger chest either i am spilling over the top of the tank or the elastic band support is too tight or too loose What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i feel uncomfortable since i have a smaller rib cage and a bigger chest either i am spilling over the top of the tank or the elastic band support is too tight or too loose What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B. Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.81it/s] 50%|█████ | 5/10 [00:00<00:00, 12.38it/s]
--- Text 149 --- Text: 'im feeling reluctant to exit my freshly cleaned apartment which i stayed up cleaning late last night' True Emotion: fear --- Zero-Shot Prompting --- Prompt: im feeling reluctant to exit my freshly cleaned apartment which i stayed up cleaning late last night What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion in this text is: Rel Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling reluctant to exit my freshly cleaned apartment which i stayed up cleaning late last night What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Reluctance Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.32it/s]
--- Text 150 --- Text: 'i feel that i need to know that i can depend on myself before i put myself in the position of supporting someone else and being supported by someone else' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel that i need to know that i can depend on myself before i put myself in the position of supporting someone else and being supported by someone else What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel that i need to know that i can depend on myself before i put myself in the position of supporting someone else and being supported by someone else What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.50it/s]
--- Text 151 --- Text: 'im feeling rather angsty and listless' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im feeling rather angsty and listless What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling rather angsty and listless What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.27it/s] 50%|█████ | 5/10 [00:00<00:00, 12.94it/s]
--- Text 152 --- Text: 'i try my best to love on them shed some light but i feel deeply compassionate with their problems and hurt even if its someone in the media' True Emotion: love --- Zero-Shot Prompting --- Prompt: i try my best to love on them shed some light but i feel deeply compassionate with their problems and hurt even if its someone in the media What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i try my best to love on them shed some light but i feel deeply compassionate with their problems and hurt even if its someone in the media What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.30it/s] 50%|█████ | 5/10 [00:00<00:00, 12.52it/s]
--- Text 153 --- Text: 'i was so uncomfortable and feeling weird feelings but wasn t sure if they were contractions since i never really felt contractions with jared until they jacked me up with pitocin' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i was so uncomfortable and feeling weird feelings but wasn t sure if they were contractions since i never really felt contractions with jared until they jacked me up with pitocin What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i was so uncomfortable and feeling weird feelings but wasn t sure if they were contractions since i never really felt contractions with jared until they jacked me up with pitocin What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.30it/s] 50%|█████ | 5/10 [00:00<00:00, 13.56it/s]
--- Text 154 --- Text: 'i feel gloomy and tired' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel gloomy and tired What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel gloomy and tired What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.17it/s] 20%|██ | 2/10 [00:00<00:00, 8.65it/s]
--- Text 155 --- Text: 'i really like this person feel that the question was really asked out of a sincere place of love and concern about how to move forward in light of what the sexuality study recently a href http www' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i really like this person feel that the question was really asked out of a sincere place of love and concern about how to move forward in light of what the sexuality study recently a href http www What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The text is written in a caring and Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i really like this person feel that the question was really asked out of a sincere place of love and concern about how to move forward in light of what the sexuality study recently a href http www What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.21it/s] 50%|█████ | 5/10 [00:00<00:00, 13.11it/s]
--- Text 156 --- Text: 'i would force myself to eat my normal routine clean meals a day but then i just started feeling so awful' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i would force myself to eat my normal routine clean meals a day but then i just started feeling so awful What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i would force myself to eat my normal routine clean meals a day but then i just started feeling so awful What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.88it/s]
--- Text 157 --- Text: 'i feel rather privileged to have witnessed the great man in action it really was impossible for a novice like me to work out just which one of the four identical looking riders was he' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel rather privileged to have witnessed the great man in action it really was impossible for a novice like me to work out just which one of the four identical looking riders was he What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel rather privileged to have witnessed the great man in action it really was impossible for a novice like me to work out just which one of the four identical looking riders was he What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Surprise Predicted Emotion: surprise --------------------
100%|██████████| 10/10 [00:00<00:00, 17.11it/s] 30%|███ | 3/10 [00:00<00:00, 11.21it/s]
--- Text 158 --- Text: 'i feel like im at the spa getting a wonderful facial when i use them' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like im at the spa getting a wonderful facial when i use them What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i feel like im at the spa getting a wonderful facial when i use them What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.57it/s]
--- Text 159 --- Text: 'i feel petty all of a sudden' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel petty all of a sudden What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel petty all of a sudden What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: petty Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.23it/s] 40%|████ | 4/10 [00:00<00:00, 12.03it/s]
--- Text 160 --- Text: 'i hope you like this more honest amp raw blog post amp if you are feeling unhappy i hope this makes you feel less alone' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i hope you like this more honest amp raw blog post amp if you are feeling unhappy i hope this makes you feel less alone What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i hope you like this more honest amp raw blog post amp if you are feeling unhappy i hope this makes you feel less alone What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.46it/s]
--- Text 161 --- Text: 'i feel slightly disgusted as well' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel slightly disgusted as well What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel slightly disgusted as well What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel slightly disgusted as well Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.91it/s] 30%|███ | 3/10 [00:00<00:00, 10.31it/s]
--- Text 162 --- Text: 'i was quite surprised with the weather these past few days but im so thankful for that since i still can wear my shorts out without feeling that cold yes no kidding' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i was quite surprised with the weather these past few days but im so thankful for that since i still can wear my shorts out without feeling that cold yes no kidding What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is surprise. Predicted Emotion: surprise --- Constraint-Based Prompting --- Prompt: i was quite surprised with the weather these past few days but im so thankful for that since i still can wear my shorts out without feeling that cold yes no kidding What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Surprise Predicted Emotion: surprise --------------------
100%|██████████| 10/10 [00:00<00:00, 17.66it/s] 100%|██████████| 10/10 [00:00<00:00, 17.00it/s]
--- Text 163 --- Text: 'i feel slightly relaxed being a' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel slightly relaxed being a What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel slightly relaxed being a What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: i feel slightly relaxed being a Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.28it/s]
--- Text 164 --- Text: 'i feel shy to admit that i was struggling to haul a single computer up' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel shy to admit that i was struggling to haul a single computer up What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel shy to admit that i was struggling to haul a single computer up What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Struggling Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.70it/s]
--- Text 165 --- Text: 'i just went about my script of would you like mustard or sauce with that and started to feel really startled' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i just went about my script of would you like mustard or sauce with that and started to feel really startled What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i just went about my script of would you like mustard or sauce with that and started to feel really startled What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Surprise Predicted Emotion: surprise --------------------
100%|██████████| 10/10 [00:00<00:00, 17.74it/s] 100%|██████████| 10/10 [00:00<00:00, 16.99it/s]
--- Text 166 --- Text: 'i enjoy my colleagues i m not feeling very sociable today' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i enjoy my colleagues i m not feeling very sociable today What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i enjoy my colleagues i m not feeling very sociable today What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: i enjoy my colleagues i m not Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.76it/s] 40%|████ | 4/10 [00:00<00:00, 12.40it/s]
--- Text 167 --- Text: 'im feeling and if ive liked being pregnant' True Emotion: love --- Zero-Shot Prompting --- Prompt: im feeling and if ive liked being pregnant What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: im feeling and if ive liked being pregnant What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.11it/s] 40%|████ | 4/10 [00:00<00:00, 12.70it/s]
--- Text 168 --- Text: 'i then feel your tender touch as you enfold me with his love' True Emotion: love --- Zero-Shot Prompting --- Prompt: i then feel your tender touch as you enfold me with his love What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i then feel your tender touch as you enfold me with his love What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.96it/s]
--- Text 169 --- Text: 'i lost a few people which i hate because i have a really hard time letting go of people to whom i feel loyal' True Emotion: love --- Zero-Shot Prompting --- Prompt: i lost a few people which i hate because i have a really hard time letting go of people to whom i feel loyal What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i lost a few people which i hate because i have a really hard time letting go of people to whom i feel loyal What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.49it/s]
--- Text 170 --- Text: 'i have had no interest at all to make any effort to meet men and when the chance arrises i then feel burdened with negative thoughts of he ll just be another idiot only after one thing' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i have had no interest at all to make any effort to meet men and when the chance arrises i then feel burdened with negative thoughts of he ll just be another idiot only after one thing What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have had no interest at all to make any effort to meet men and when the chance arrises i then feel burdened with negative thoughts of he ll just be another idiot only after one thing What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.87it/s]
--- Text 171 --- Text: 'i feel i m being nutritionally supportive of it as well' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel i m being nutritionally supportive of it as well What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel i m being nutritionally supportive of it as well What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: The emotion of this text is: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.96it/s]
--- Text 172 --- Text: 'i feel impatient i just post a blog entry and i feel ive gotten some words written and out into the world' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel impatient i just post a blog entry and i feel ive gotten some words written and out into the world What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel impatient i just post a blog entry and i feel ive gotten some words written and out into the world What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Impatience Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.64it/s]
--- Text 173 --- Text: 'i am trying my hardest so i can get to a place where i can join you and finally feel like i have something worthwhile to say' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am trying my hardest so i can get to a place where i can join you and finally feel like i have something worthwhile to say What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am trying my hardest so i can get to a place where i can join you and finally feel like i have something worthwhile to say What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.36it/s] 40%|████ | 4/10 [00:00<00:00, 11.84it/s]
--- Text 174 --- Text: 'i have to admit i feel amused when i see the pti jamiat and a whole lot of others in the media try to avoid the suggestion that they are actually protesting the use of sharia in the case of raymond davis s release' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i have to admit i feel amused when i see the pti jamiat and a whole lot of others in the media try to avoid the suggestion that they are actually protesting the use of sharia in the case of raymond davis s release What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is amusement Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have to admit i feel amused when i see the pti jamiat and a whole lot of others in the media try to avoid the suggestion that they are actually protesting the use of sharia in the case of raymond davis s release What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Amused Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.48it/s]
--- Text 175 --- Text: 'i feel embarrassed that it got so bad' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel embarrassed that it got so bad What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel embarrassed that it got so bad What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.82it/s]
--- Text 176 --- Text: 'im feeling really bitter about this one' True Emotion: anger --- Zero-Shot Prompting --- Prompt: im feeling really bitter about this one What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling really bitter about this one What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: bitter Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.40it/s] 100%|██████████| 10/10 [00:00<00:00, 16.18it/s]
--- Text 177 --- Text: 'i feel brave today heading to amman and beirut by way of istanbul or i feel brave today a href http jessicadickinsongoodman' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel brave today heading to amman and beirut by way of istanbul or i feel brave today a href http jessicadickinsongoodman What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Bra Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel brave today heading to amman and beirut by way of istanbul or i feel brave today a href http jessicadickinsongoodman What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel brave today heading to Amman Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.28it/s] 30%|███ | 3/10 [00:00<00:00, 10.69it/s]
--- Text 178 --- Text: 'i had a fab christmas and an amazing new year with my family and friends and against all odds i feel very optimistic about' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i had a fab christmas and an amazing new year with my family and friends and against all odds i feel very optimistic about What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i had a fab christmas and an amazing new year with my family and friends and against all odds i feel very optimistic about What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.72it/s]
--- Text 179 --- Text: 'i feel like a loser everyone says they lost but i dont i know exactly where i am i just hate being here oh' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like a loser everyone says they lost but i dont i know exactly where i am i just hate being here oh What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like a loser everyone says they lost but i dont i know exactly where i am i just hate being here oh What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.03it/s]
--- Text 180 --- Text: 'i feel defeated but others i feel refreshed' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel defeated but others i feel refreshed What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel defeated but others i feel refreshed What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: refreshed Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.00it/s]
--- Text 181 --- Text: 'i was feeling particularly vulnerable in a specific area so i began to talking to my friends and interestingly enough there was an incredible understanding of my struggle' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i was feeling particularly vulnerable in a specific area so i began to talking to my friends and interestingly enough there was an incredible understanding of my struggle What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was feeling particularly vulnerable in a specific area so i began to talking to my friends and interestingly enough there was an incredible understanding of my struggle What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.74it/s] 50%|█████ | 5/10 [00:00<00:00, 12.59it/s]
--- Text 182 --- Text: 'i go onto the officer down memorial page and reflect on my feelings about that wonderful officer which seems to make me feel a little better' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i go onto the officer down memorial page and reflect on my feelings about that wonderful officer which seems to make me feel a little better What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i go onto the officer down memorial page and reflect on my feelings about that wonderful officer which seems to make me feel a little better What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.28it/s] 50%|█████ | 5/10 [00:00<00:00, 13.41it/s]
--- Text 183 --- Text: 'im with a group of people i still feel isolated and on the outside looking in' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im with a group of people i still feel isolated and on the outside looking in What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is isolation Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im with a group of people i still feel isolated and on the outside looking in What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.69it/s]
--- Text 184 --- Text: 'i feel blessed to know this family' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel blessed to know this family What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel blessed to know this family What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.26it/s] 20%|██ | 2/10 [00:00<00:00, 9.43it/s]
--- Text 185 --- Text: 'i feel terrified because my landlord has not changed our locks yet' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel terrified because my landlord has not changed our locks yet What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i feel terrified because my landlord has not changed our locks yet What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear. Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.63it/s]
--- Text 186 --- Text: 'i am loosing out but i feel like i have have so much to share with many and if anything that is not unfortunate if anything it makes me grateful' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i am loosing out but i feel like i have have so much to share with many and if anything that is not unfortunate if anything it makes me grateful What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am loosing out but i feel like i have have so much to share with many and if anything that is not unfortunate if anything it makes me grateful What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Gratitude Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.02it/s] 100%|██████████| 10/10 [00:00<00:00, 17.03it/s]
--- Text 187 --- Text: 'i don t like eating meals that feel too virtuous' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i don t like eating meals that feel too virtuous What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion in this text is likely: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i don t like eating meals that feel too virtuous What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I don't like eating me Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.37it/s]
--- Text 188 --- Text: 'i left feeling pretty thrilled for the opportunity to at least throw my name in the hat' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i left feeling pretty thrilled for the opportunity to at least throw my name in the hat What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i left feeling pretty thrilled for the opportunity to at least throw my name in the hat What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.81it/s]
--- Text 189 --- Text: 'i feel kinda weird when andrea tries to talk to me about chris' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel kinda weird when andrea tries to talk to me about chris What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel kinda weird when andrea tries to talk to me about chris What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.58it/s]
--- Text 190 --- Text: 'i loved about ellie is that she didnt feel insulted by all the rude douche baggy things lothaire said to her because according to ellie insults only hurt when they come from somebody you respect damn straight' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i loved about ellie is that she didnt feel insulted by all the rude douche baggy things lothaire said to her because according to ellie insults only hurt when they come from somebody you respect damn straight What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i loved about ellie is that she didnt feel insulted by all the rude douche baggy things lothaire said to her because according to ellie insults only hurt when they come from somebody you respect damn straight What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.22it/s]
--- Text 191 --- Text: 'i feel was pretty triumphant' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel was pretty triumphant What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel was pretty triumphant What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: triumph Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.63it/s]
--- Text 192 --- Text: 'im enjoying my solitary confinement at home i rarely feel lonely' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im enjoying my solitary confinement at home i rarely feel lonely What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im enjoying my solitary confinement at home i rarely feel lonely What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.49it/s]
--- Text 193 --- Text: 'i am being over dramatic but i do feel very strongly for her and i am resolved to speak with her next chance i get' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am being over dramatic but i do feel very strongly for her and i am resolved to speak with her next chance i get What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am being over dramatic but i do feel very strongly for her and i am resolved to speak with her next chance i get What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.29it/s] 50%|█████ | 5/10 [00:00<00:00, 12.92it/s]
--- Text 194 --- Text: 'i really dont like quinn because i feel like she will just end up hurting barney and i hated the lame ted robin storyline' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i really dont like quinn because i feel like she will just end up hurting barney and i hated the lame ted robin storyline What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i really dont like quinn because i feel like she will just end up hurting barney and i hated the lame ted robin storyline What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.32it/s]
--- Text 195 --- Text: 'i feel so lousy but i shouldnt be focusing on me now' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel so lousy but i shouldnt be focusing on me now What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so lousy but i shouldnt be focusing on me now What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.28it/s] 60%|██████ | 6/10 [00:00<00:00, 13.70it/s]
--- Text 196 --- Text: 'i cant remember ever feeling so exhausted it took trips with the car on the last day to get everything brought to the trailer' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i cant remember ever feeling so exhausted it took trips with the car on the last day to get everything brought to the trailer What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is exhaustion Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i cant remember ever feeling so exhausted it took trips with the car on the last day to get everything brought to the trailer What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Exhaustion Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.40it/s]
--- Text 197 --- Text: 'i wrote two years ago so many things i feel unsure of maybe' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i wrote two years ago so many things i feel unsure of maybe What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i wrote two years ago so many things i feel unsure of maybe What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.56it/s] 60%|██████ | 6/10 [00:00<00:00, 14.30it/s]
--- Text 198 --- Text: 'i feel suspicious of informality and a lack of credentials' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel suspicious of informality and a lack of credentials What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i feel suspicious of informality and a lack of credentials What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Suspicion Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.43it/s]
--- Text 199 --- Text: 'i receive every month make me proud and feel appreciative' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i receive every month make me proud and feel appreciative What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i receive every month make me proud and feel appreciative What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.48it/s] 50%|█████ | 5/10 [00:00<00:00, 13.08it/s]
--- Text 200 --- Text: 'i feel that third situation pretty much sums up my feelings toward this title' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel that third situation pretty much sums up my feelings toward this title What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel that third situation pretty much sums up my feelings toward this title What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.33it/s]
--- Text 201 --- Text: 'i wanted to feel him in my hands and reached out to take him into my waiting eager mouth' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i wanted to feel him in my hands and reached out to take him into my waiting eager mouth What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i wanted to feel him in my hands and reached out to take him into my waiting eager mouth What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.74it/s]
--- Text 202 --- Text: 'i feel more gentle that way wth' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel more gentle that way wth What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel more gentle that way wth What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel more gentle that way wth Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.39it/s]
--- Text 203 --- Text: 'i got home feeling hot tired and great' True Emotion: love --- Zero-Shot Prompting --- Prompt: i got home feeling hot tired and great What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i got home feeling hot tired and great What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: hot Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.39it/s]
--- Text 204 --- Text: 'i feel more creative' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel more creative What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel more creative What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.74it/s] 40%|████ | 4/10 [00:00<00:00, 12.49it/s]
--- Text 205 --- Text: 'i feel so talented i can use a computer' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel so talented i can use a computer What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so talented i can use a computer What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.42it/s] 40%|████ | 4/10 [00:00<00:00, 12.46it/s]
--- Text 206 --- Text: 'i feel unfathomably rich in having had a healthy pregnancy so far' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel unfathomably rich in having had a healthy pregnancy so far What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion in this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i feel unfathomably rich in having had a healthy pregnancy so far What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.41it/s] 20%|██ | 2/10 [00:00<00:00, 8.62it/s]
--- Text 207 --- Text: 'i wish to know whether i should feel sympathetic towards the airline american if say their plane is on fire or their pilot has exploded or whether i should want to set them on fire if say they just decided to walk on their obligations to save money' True Emotion: love --- Zero-Shot Prompting --- Prompt: i wish to know whether i should feel sympathetic towards the airline american if say their plane is on fire or their pilot has exploded or whether i should want to set them on fire if say they just decided to walk on their obligations to save money What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i wish to know whether i should feel sympathetic towards the airline american if say their plane is on fire or their pilot has exploded or whether i should want to set them on fire if say they just decided to walk on their obligations to save money What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
100%|██████████| 10/10 [00:00<00:00, 17.75it/s] 50%|█████ | 5/10 [00:00<00:00, 13.60it/s]
--- Text 208 --- Text: 'i don t want them to feel so pressured' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i don t want them to feel so pressured What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i don t want them to feel so pressured What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.68it/s]
--- Text 209 --- Text: 'i still feel frightened of the world yet no where near as much as i used to' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i still feel frightened of the world yet no where near as much as i used to What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i still feel frightened of the world yet no where near as much as i used to What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 70%|███████ | 7/10 [00:00<00:00, 14.77it/s]
--- Text 210 --- Text: 'im not feeling mellow' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im not feeling mellow What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im not feeling mellow What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: im not feeling mellow Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.51it/s] 40%|████ | 4/10 [00:00<00:00, 12.73it/s]
--- Text 211 --- Text: 'i wake too early so i feel grumpy' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i wake too early so i feel grumpy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is grump Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i wake too early so i feel grumpy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: grumpiness. Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.48it/s]
--- Text 212 --- Text: 'i believe you all will come to my work place and just try to make me feel humiliated but you know what deep down in my heart i know who is the one who should be ashamed of themselves' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i believe you all will come to my work place and just try to make me feel humiliated but you know what deep down in my heart i know who is the one who should be ashamed of themselves What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i believe you all will come to my work place and just try to make me feel humiliated but you know what deep down in my heart i know who is the one who should be ashamed of themselves What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.04it/s]
--- Text 213 --- Text: 'i did finally get it if you didn t laugh left me feeling delighted exhausted and just so privileged' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i did finally get it if you didn t laugh left me feeling delighted exhausted and just so privileged What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i did finally get it if you didn t laugh left me feeling delighted exhausted and just so privileged What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: delighted. Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.58it/s]
--- Text 214 --- Text: 'i was remembering this i was feeling skeptical' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i was remembering this i was feeling skeptical What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was remembering this i was feeling skeptical What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: skepticism Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.29it/s] 40%|████ | 4/10 [00:00<00:00, 11.74it/s]
--- Text 215 --- Text: 'i have some pretty brazen goals and each day i feel stronger and more confident that i m going to reach my desired end result' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i have some pretty brazen goals and each day i feel stronger and more confident that i m going to reach my desired end result What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is JO Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have some pretty brazen goals and each day i feel stronger and more confident that i m going to reach my desired end result What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.31it/s] 100%|██████████| 10/10 [00:00<00:00, 16.69it/s]
--- Text 216 --- Text: 'i feel dirty talking to people for my personal gain' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel dirty talking to people for my personal gain What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel dirty talking to people for my personal gain What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel dirty talking to people for my Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.81it/s] 50%|█████ | 5/10 [00:00<00:00, 12.13it/s]
--- Text 217 --- Text: 'i sat there cold i flashed back to going to the hockey city classic and the degree weather and it feeling just as cold even though there was about a degree difference this night' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i sat there cold i flashed back to going to the hockey city classic and the degree weather and it feeling just as cold even though there was about a degree difference this night What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i sat there cold i flashed back to going to the hockey city classic and the degree weather and it feeling just as cold even though there was about a degree difference this night What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.16it/s]
--- Text 218 --- Text: 'i feel numb as i carry on and i wonder if i will get over it' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel numb as i carry on and i wonder if i will get over it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel numb as i carry on and i wonder if i will get over it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.56it/s]
--- Text 219 --- Text: 'i was somewhat coerced into this blog review so i feel a bit rushed and flustered' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i was somewhat coerced into this blog review so i feel a bit rushed and flustered What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was somewhat coerced into this blog review so i feel a bit rushed and flustered What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.02it/s]
--- Text 220 --- Text: 'i guess i wont feel too jealous since i often do my mothering at the pool but its nice to have a husband again' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i guess i wont feel too jealous since i often do my mothering at the pool but its nice to have a husband again What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i guess i wont feel too jealous since i often do my mothering at the pool but its nice to have a husband again What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.56it/s]
--- Text 221 --- Text: 'im not sure how i feel about needing to exercise so as to maintain a pleasant demeanor' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im not sure how i feel about needing to exercise so as to maintain a pleasant demeanor What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im not sure how i feel about needing to exercise so as to maintain a pleasant demeanor What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.55it/s]
--- Text 222 --- Text: 'i feel alarmed' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel alarmed What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel alarmed What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: alarmed Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.47it/s] 50%|█████ | 5/10 [00:00<00:00, 13.15it/s]
--- Text 223 --- Text: 'i think i wanted audiences to feel impressed inspired or entertained when i was on stage' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i think i wanted audiences to feel impressed inspired or entertained when i was on stage What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i think i wanted audiences to feel impressed inspired or entertained when i was on stage What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Inspired Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.64it/s]
--- Text 224 --- Text: 'i wasnt feeling well yesterday morning afternoon so i just laid in bed and ended up in the all too familiar youtube black hole' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i wasnt feeling well yesterday morning afternoon so i just laid in bed and ended up in the all too familiar youtube black hole What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i wasnt feeling well yesterday morning afternoon so i just laid in bed and ended up in the all too familiar youtube black hole What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.22it/s]
--- Text 225 --- Text: 'i have these terrible feelings that i hyped myself up to be more talented than i am' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i have these terrible feelings that i hyped myself up to be more talented than i am What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have these terrible feelings that i hyped myself up to be more talented than i am What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.45it/s] 50%|█████ | 5/10 [00:00<00:00, 12.83it/s]
--- Text 226 --- Text: 'i do take on a half marathon challenge then i will wait and see how the body feels as to whether there will be a pb attempt or a casual kilometre shuffle' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i do take on a half marathon challenge then i will wait and see how the body feels as to whether there will be a pb attempt or a casual kilometre shuffle What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i do take on a half marathon challenge then i will wait and see how the body feels as to whether there will be a pb attempt or a casual kilometre shuffle What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.22it/s] 20%|██ | 2/10 [00:00<00:00, 8.61it/s]
--- Text 227 --- Text: 'i couldn t help but feel pissed off at both sides of the debate and the unnecessary dichotomy itself' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i couldn t help but feel pissed off at both sides of the debate and the unnecessary dichotomy itself What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i couldn t help but feel pissed off at both sides of the debate and the unnecessary dichotomy itself What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.59it/s]
--- Text 228 --- Text: 'i feel like i cant be respected if i have self respect because it is so regular to now hate your self' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like i cant be respected if i have self respect because it is so regular to now hate your self What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like i cant be respected if i have self respect because it is so regular to now hate your self What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.28it/s]
--- Text 229 --- Text: 'i smiled at him feeling his longing and said maybe later buddy but i have to make lunch now' True Emotion: love --- Zero-Shot Prompting --- Prompt: i smiled at him feeling his longing and said maybe later buddy but i have to make lunch now What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i smiled at him feeling his longing and said maybe later buddy but i have to make lunch now What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.07it/s] 40%|████ | 4/10 [00:00<00:00, 12.03it/s]
--- Text 230 --- Text: 'i am truly unfortunate the majority of the time i m usually drained but i obtain it hard to get from bed i really feel restless and others' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i am truly unfortunate the majority of the time i m usually drained but i obtain it hard to get from bed i really feel restless and others What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i am truly unfortunate the majority of the time i m usually drained but i obtain it hard to get from bed i really feel restless and others What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.60it/s]
--- Text 231 --- Text: 'i am feeling rather damaged' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i am feeling rather damaged What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling rather damaged What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.31it/s]
--- Text 232 --- Text: 'i said i feel ugly today' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i said i feel ugly today What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i said i feel ugly today What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.66it/s]
--- Text 233 --- Text: 'i left my garmin on my bike so i was going to have to do this by feel coming out of transition its amazing hearing cheers and your adrenaline is just going crazy' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i left my garmin on my bike so i was going to have to do this by feel coming out of transition its amazing hearing cheers and your adrenaline is just going crazy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i left my garmin on my bike so i was going to have to do this by feel coming out of transition its amazing hearing cheers and your adrenaline is just going crazy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.49it/s]
--- Text 234 --- Text: 'i feel so smart when i find ways to trick myself like this' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel so smart when i find ways to trick myself like this What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so smart when i find ways to trick myself like this What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.26it/s] 40%|████ | 4/10 [00:00<00:00, 11.85it/s]
--- Text 235 --- Text: 'i love to dance but often feel inhibited by my own body unsure what i am capable of hyper concerned about other people watching me and having opinions on my style or just feeling awkward as if i have no idea what i am supposed to do here' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i love to dance but often feel inhibited by my own body unsure what i am capable of hyper concerned about other people watching me and having opinions on my style or just feeling awkward as if i have no idea what i am supposed to do here What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i love to dance but often feel inhibited by my own body unsure what i am capable of hyper concerned about other people watching me and having opinions on my style or just feeling awkward as if i have no idea what i am supposed to do here What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fear Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.41it/s]
--- Text 236 --- Text: 'i feel like cards are the perfect thing to make with them' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like cards are the perfect thing to make with them What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like cards are the perfect thing to make with them What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.73it/s] 50%|█████ | 5/10 [00:00<00:00, 13.60it/s]
--- Text 237 --- Text: 'i feel like some heroine of some tragic manga' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like some heroine of some tragic manga What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel like some heroine of some tragic manga What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.04it/s] 100%|██████████| 10/10 [00:00<00:00, 16.88it/s]
--- Text 238 --- Text: 'i just feel safer than working part time casual at hr' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i just feel safer than working part time casual at hr What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i just feel safer than working part time casual at hr What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I just feel safer than working part Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.69it/s]
--- Text 239 --- Text: 'i was ambushed again it was apparently my fault again i feel worthless' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i was ambushed again it was apparently my fault again i feel worthless What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was ambushed again it was apparently my fault again i feel worthless What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.30it/s] 40%|████ | 4/10 [00:00<00:00, 12.03it/s]
--- Text 240 --- Text: 'i feel privileged to be a part of something so eternal and so precious to the lord jesus he shed his blood so that churches like this could exist' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel privileged to be a part of something so eternal and so precious to the lord jesus he shed his blood so that churches like this could exist What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i feel privileged to be a part of something so eternal and so precious to the lord jesus he shed his blood so that churches like this could exist What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.30it/s]
--- Text 241 --- Text: 'i feel wholly inadequate to the task before me' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel wholly inadequate to the task before me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel wholly inadequate to the task before me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: insecurity Predicted Emotion: unknown --------------------
10%|█ | 1/10 [00:00<00:01, 6.23it/s] 20%|██ | 2/10 [00:00<00:00, 8.58it/s]
--- Text 242 --- Text: 'i have a feeling this is a bit naughty scanning an article from a magazine but i know that so many people would love to read thi' True Emotion: love --- Zero-Shot Prompting --- Prompt: i have a feeling this is a bit naughty scanning an article from a magazine but i know that so many people would love to read thi What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have a feeling this is a bit naughty scanning an article from a magazine but i know that so many people would love to read thi What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 16.86it/s] 30%|███ | 3/10 [00:00<00:00, 10.57it/s]
--- Text 243 --- Text: 'i see you on the pitchers mound at our little league diamond i feel so anxious for you because it looks so isolated over there' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i see you on the pitchers mound at our little league diamond i feel so anxious for you because it looks so isolated over there What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i see you on the pitchers mound at our little league diamond i feel so anxious for you because it looks so isolated over there What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fear Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.53it/s]
--- Text 244 --- Text: 'i feel like i am joining the masses which goes against my rebellion of the popular mentality ha i m so goth but i take peace in knowing that i am not making the same resolutions as everyone else' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like i am joining the masses which goes against my rebellion of the popular mentality ha i m so goth but i take peace in knowing that i am not making the same resolutions as everyone else What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like i am joining the masses which goes against my rebellion of the popular mentality ha i m so goth but i take peace in knowing that i am not making the same resolutions as everyone else What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.96it/s] 60%|██████ | 6/10 [00:00<00:00, 14.06it/s]
--- Text 245 --- Text: 'i feel disillusioned with the occult so i have come to feel a greater connection to the earth' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel disillusioned with the occult so i have come to feel a greater connection to the earth What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is disill Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel disillusioned with the occult so i have come to feel a greater connection to the earth What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Disillusionment Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.10it/s]
--- Text 246 --- Text: 'i feel stupid whenever this happens' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel stupid whenever this happens What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel stupid whenever this happens What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Stupid Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.44it/s] 50%|█████ | 5/10 [00:00<00:00, 13.34it/s]
--- Text 247 --- Text: 'i come home and feel so shitty i cant bring myself to do all the work i need to do' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i come home and feel so shitty i cant bring myself to do all the work i need to do What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i come home and feel so shitty i cant bring myself to do all the work i need to do What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.27it/s] 40%|████ | 4/10 [00:00<00:00, 12.34it/s]
--- Text 248 --- Text: 'i feel like my irritable sensitive combination skin has finally met it s match' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel like my irritable sensitive combination skin has finally met it s match What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i feel like my irritable sensitive combination skin has finally met it s match What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.30it/s]
--- Text 249 --- Text: 'i like it though its very over the top but makes me feel clever by association' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i like it though its very over the top but makes me feel clever by association What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i like it though its very over the top but makes me feel clever by association What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I like it though its very over the Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.48it/s] 50%|█████ | 5/10 [00:00<00:00, 13.56it/s]
--- Text 250 --- Text: 'i will practice meditation if i feel overwhelmed and hopefully become successful in peaceful practice' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i will practice meditation if i feel overwhelmed and hopefully become successful in peaceful practice What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i will practice meditation if i feel overwhelmed and hopefully become successful in peaceful practice What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.97it/s] 30%|███ | 3/10 [00:00<00:00, 11.04it/s]
--- Text 251 --- Text: 'i feel like it was all in vain cant be right and feel this wrong this heart of mine is just' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like it was all in vain cant be right and feel this wrong this heart of mine is just What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel like it was all in vain cant be right and feel this wrong this heart of mine is just What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness. Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.67it/s]
--- Text 252 --- Text: 'i hope everyone can help with charity work without feeling stressed about such things' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i hope everyone can help with charity work without feeling stressed about such things What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i hope everyone can help with charity work without feeling stressed about such things What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.75it/s] 40%|████ | 4/10 [00:00<00:00, 12.72it/s]
--- Text 253 --- Text: 'i feel so guilty for putting my child in daycare' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel so guilty for putting my child in daycare What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is guilt Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so guilty for putting my child in daycare What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: guilt Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.64it/s]
--- Text 254 --- Text: 'i get frustrated that unresolved issues from my past have had a severe negative effect on my behavior and feel he must be angry that i have not resolved them by now' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i get frustrated that unresolved issues from my past have had a severe negative effect on my behavior and feel he must be angry that i have not resolved them by now What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i get frustrated that unresolved issues from my past have had a severe negative effect on my behavior and feel he must be angry that i have not resolved them by now What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.32it/s]
--- Text 255 --- Text: 'i feel blessed beyond blessed to share my life with you each week' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel blessed beyond blessed to share my life with you each week What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel blessed beyond blessed to share my life with you each week What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.09it/s] 40%|████ | 4/10 [00:00<00:00, 11.72it/s]
--- Text 256 --- Text: 'i feel devastated over things that i have lost i will remind myself to be grateful for what i still have' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel devastated over things that i have lost i will remind myself to be grateful for what i still have What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel devastated over things that i have lost i will remind myself to be grateful for what i still have What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.53it/s]
--- Text 257 --- Text: 'im feeling energetic' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im feeling energetic What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling energetic What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.29it/s]
--- Text 258 --- Text: 'i have come to understand that feelings are neither positive nor negative' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i have come to understand that feelings are neither positive nor negative What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have come to understand that feelings are neither positive nor negative What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I have come to understand that feelings are Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.15it/s] 40%|████ | 4/10 [00:00<00:00, 11.41it/s]
--- Text 259 --- Text: 'i just don t like to be asked about the reason behind my mood when i m feeling gloomy laughs' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i just don t like to be asked about the reason behind my mood when i m feeling gloomy laughs What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i just don t like to be asked about the reason behind my mood when i m feeling gloomy laughs What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.91it/s]
--- Text 260 --- Text: 'i feel really bothered about the lack of time i get to find inspiration' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel really bothered about the lack of time i get to find inspiration What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel really bothered about the lack of time i get to find inspiration What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.63it/s]
--- Text 261 --- Text: 'i used to be able to hang around talk with the cashier when i was putting away my money now i feel rushed and stressed if i take a second to fumble with the coins and put them in my purse' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i used to be able to hang around talk with the cashier when i was putting away my money now i feel rushed and stressed if i take a second to fumble with the coins and put them in my purse What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i used to be able to hang around talk with the cashier when i was putting away my money now i feel rushed and stressed if i take a second to fumble with the coins and put them in my purse What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.29it/s] 50%|█████ | 5/10 [00:00<00:00, 12.32it/s]
--- Text 262 --- Text: 'i feel frustrated or the world around me lies shattered i just go and walk in the rain so that no body could see my eyes full of tears this is the delivery system of justice as conceptualized by our courts which we are learning the hard way' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel frustrated or the world around me lies shattered i just go and walk in the rain so that no body could see my eyes full of tears this is the delivery system of justice as conceptualized by our courts which we are learning the hard way What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel frustrated or the world around me lies shattered i just go and walk in the rain so that no body could see my eyes full of tears this is the delivery system of justice as conceptualized by our courts which we are learning the hard way What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.22it/s] 30%|███ | 3/10 [00:00<00:00, 11.02it/s]
--- Text 263 --- Text: 'i realized what i am passionate about helping women feel accepted and appreciated' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i realized what i am passionate about helping women feel accepted and appreciated What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i realized what i am passionate about helping women feel accepted and appreciated What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.54it/s]
--- Text 264 --- Text: 'i could change the emphasis and say i am stella and i m noticing i m feeling impatient' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i could change the emphasis and say i am stella and i m noticing i m feeling impatient What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i could change the emphasis and say i am stella and i m noticing i m feeling impatient What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Impatience Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.41it/s] 60%|██████ | 6/10 [00:00<00:00, 13.53it/s]
--- Text 265 --- Text: 'i don t like outsourcing because i m a picky sod and usually end up feeling dissatisfied with the work of others but i have to force myself to outsource because you need to realize you can t do everything yourself' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i don t like outsourcing because i m a picky sod and usually end up feeling dissatisfied with the work of others but i have to force myself to outsource because you need to realize you can t do everything yourself What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i don t like outsourcing because i m a picky sod and usually end up feeling dissatisfied with the work of others but i have to force myself to outsource because you need to realize you can t do everything yourself What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Dissatisfaction Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.42it/s]
--- Text 266 --- Text: 'i feel so blessed and honored that we get to be its parents' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel so blessed and honored that we get to be its parents What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so blessed and honored that we get to be its parents What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.71it/s]
--- Text 267 --- Text: 'i do feel welcomed but it s a little weird' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i do feel welcomed but it s a little weird What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i do feel welcomed but it s a little weird What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: surprise Predicted Emotion: surprise --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.37it/s]
--- Text 268 --- Text: 'i feel like i entertained sd all day' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like i entertained sd all day What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like i entertained sd all day What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.54it/s]
--- Text 269 --- Text: 'ive struggled mightily through today and even though i feel cranky and tired and unmotivated still i really am not going to be going to sleep before eleven thirty' True Emotion: anger --- Zero-Shot Prompting --- Prompt: ive struggled mightily through today and even though i feel cranky and tired and unmotivated still i really am not going to be going to sleep before eleven thirty What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: ive struggled mightily through today and even though i feel cranky and tired and unmotivated still i really am not going to be going to sleep before eleven thirty What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Cranky Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.53it/s]
--- Text 270 --- Text: 'i remember sitting out on the porch feeling drained and alone even as sunlight bathed my hair in warm radiance and a light breeze cooled my cheeks' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i remember sitting out on the porch feeling drained and alone even as sunlight bathed my hair in warm radiance and a light breeze cooled my cheeks What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i remember sitting out on the porch feeling drained and alone even as sunlight bathed my hair in warm radiance and a light breeze cooled my cheeks What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 10%|█ | 1/10 [00:00<00:01, 6.31it/s]
--- Text 271 --- Text: 'i didnt feel i rushed things dhawan tweet script type text javascript src http platform' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i didnt feel i rushed things dhawan tweet script type text javascript src http platform What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i didnt feel i rushed things dhawan tweet script type text javascript src http platform What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.57it/s]
--- Text 272 --- Text: 'i realized i was feeling really irritated while i was saying that' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i realized i was feeling really irritated while i was saying that What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i realized i was feeling really irritated while i was saying that What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: irritation Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.60it/s]
--- Text 273 --- Text: 'i am balancing on my hands with my feet hanging over and it feels like pretty far and im terrified to let them drop but im totally calm at the same time hanging here' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i am balancing on my hands with my feet hanging over and it feels like pretty far and im terrified to let them drop but im totally calm at the same time hanging here What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am balancing on my hands with my feet hanging over and it feels like pretty far and im terrified to let them drop but im totally calm at the same time hanging here What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fear Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.47it/s]
--- Text 274 --- Text: 'i feel so fucking worthless' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel so fucking worthless What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so fucking worthless What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.03it/s] 50%|█████ | 5/10 [00:00<00:00, 12.88it/s]
--- Text 275 --- Text: 'i feel like a lot of men are royally fucked up and go through life wreaking havoc and end up destroying themselves in the process' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel like a lot of men are royally fucked up and go through life wreaking havoc and end up destroying themselves in the process What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i feel like a lot of men are royally fucked up and go through life wreaking havoc and end up destroying themselves in the process What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.05it/s] 50%|█████ | 5/10 [00:00<00:00, 13.56it/s]
--- Text 276 --- Text: 'i feel devastated that my art style can be copied' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel devastated that my art style can be copied What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel devastated that my art style can be copied What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.57it/s]
--- Text 277 --- Text: 'i feel fine about feeling well fine' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel fine about feeling well fine What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel fine about feeling well fine What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fine Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.57it/s]
--- Text 278 --- Text: 'i can only begin to feel how distraught she must be' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i can only begin to feel how distraught she must be What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i can only begin to feel how distraught she must be What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.44it/s] 100%|██████████| 10/10 [00:00<00:00, 16.64it/s]
--- Text 279 --- Text: 'i also didnt feel i could be mad at god because i know inside me that god does nothing without a purpose' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i also didnt feel i could be mad at god because i know inside me that god does nothing without a purpose What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i also didnt feel i could be mad at god because i know inside me that god does nothing without a purpose What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.57it/s]
--- Text 280 --- Text: 'i think we were both feeling a little drained from work as well' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i think we were both feeling a little drained from work as well What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i think we were both feeling a little drained from work as well What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.33it/s]
--- Text 281 --- Text: 'i gather supplies and start to check her progress via internal exam the head midwife prepares to start an iv and calmly asks others for more assistance i feel reassured by her calmness' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i gather supplies and start to check her progress via internal exam the head midwife prepares to start an iv and calmly asks others for more assistance i feel reassured by her calmness What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i gather supplies and start to check her progress via internal exam the head midwife prepares to start an iv and calmly asks others for more assistance i feel reassured by her calmness What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Calmness Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.93it/s] 50%|█████ | 5/10 [00:00<00:00, 13.08it/s]
--- Text 282 --- Text: 'i feel crappy i eat crappy' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel crappy i eat crappy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel crappy i eat crappy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.87it/s]
--- Text 283 --- Text: 'i feel more of numb now' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel more of numb now What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel more of numb now What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: numb Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.24it/s]
--- Text 284 --- Text: 'i feel extremely honoured to have received such a prestigious award' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel extremely honoured to have received such a prestigious award What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel extremely honoured to have received such a prestigious award What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: JOY Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.95it/s]
--- Text 285 --- Text: 'im feeling adventurous and successful in my quest so far' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im feeling adventurous and successful in my quest so far What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling adventurous and successful in my quest so far What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.66it/s]
--- Text 286 --- Text: 'i feel so thrilled to have three such distinguished individuals such as yourselves here' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel so thrilled to have three such distinguished individuals such as yourselves here What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so thrilled to have three such distinguished individuals such as yourselves here What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.46it/s] 50%|█████ | 5/10 [00:00<00:00, 13.30it/s]
--- Text 287 --- Text: 'i figured my parents wont make me feel accepted so i stopped trying i turned to romantic relationships with men' True Emotion: love --- Zero-Shot Prompting --- Prompt: i figured my parents wont make me feel accepted so i stopped trying i turned to romantic relationships with men What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i figured my parents wont make me feel accepted so i stopped trying i turned to romantic relationships with men What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.55it/s]
--- Text 288 --- Text: 'i was left feeling empty' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i was left feeling empty What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was left feeling empty What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.58it/s]
--- Text 289 --- Text: 'i feel pretty much like this scene from a href http www' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel pretty much like this scene from a href http www What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel pretty much like this scene from a href http www What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.46it/s] 100%|██████████| 10/10 [00:00<00:00, 17.28it/s]
--- Text 290 --- Text: 'i may not have really been feeling superior but i certainly was feeling that i had the answers wasnt i' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i may not have really been feeling superior but i certainly was feeling that i had the answers wasnt i What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i may not have really been feeling superior but i certainly was feeling that i had the answers wasnt i What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I may not have really been feeling superior Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.99it/s] 50%|█████ | 5/10 [00:00<00:00, 12.94it/s]
--- Text 291 --- Text: 'i just feel are ludicrous and wasting space or so trite they should have looked at the book first and come up with something a little more original' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i just feel are ludicrous and wasting space or so trite they should have looked at the book first and come up with something a little more original What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i just feel are ludicrous and wasting space or so trite they should have looked at the book first and come up with something a little more original What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.51it/s] 20%|██ | 2/10 [00:00<00:00, 9.52it/s]
--- Text 292 --- Text: 'i feel like a wimpy canoe floating towards a rising tsunami' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel like a wimpy canoe floating towards a rising tsunami What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i feel like a wimpy canoe floating towards a rising tsunami What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear. Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.58it/s]
--- Text 293 --- Text: 'i feel sympathetic towards her she was tired and weary and i can see how a split second doubt could make the effortless action of standing still seem like the better option' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel sympathetic towards her she was tired and weary and i can see how a split second doubt could make the effortless action of standing still seem like the better option What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel sympathetic towards her she was tired and weary and i can see how a split second doubt could make the effortless action of standing still seem like the better option What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.19it/s]
--- Text 294 --- Text: 'i start to feel unloved and unappreciated' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i start to feel unloved and unappreciated What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i start to feel unloved and unappreciated What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.71it/s] 20%|██ | 2/10 [00:00<00:00, 9.51it/s]
--- Text 295 --- Text: 'i just want to know the feeling of loving and be loved' True Emotion: love --- Zero-Shot Prompting --- Prompt: i just want to know the feeling of loving and be loved What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i just want to know the feeling of loving and be loved What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.47it/s]
--- Text 296 --- Text: 'i feel strange talking about less serious things right now like cooking' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel strange talking about less serious things right now like cooking What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel strange talking about less serious things right now like cooking What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.63it/s] 20%|██ | 2/10 [00:00<00:00, 8.67it/s]
--- Text 297 --- Text: 'i sometimes have urges to just freak out because i feel so bothered and usually nothing has caused me to feel bothered or irritated i scratch my arms when i m mad' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i sometimes have urges to just freak out because i feel so bothered and usually nothing has caused me to feel bothered or irritated i scratch my arms when i m mad What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i sometimes have urges to just freak out because i feel so bothered and usually nothing has caused me to feel bothered or irritated i scratch my arms when i m mad What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
100%|██████████| 10/10 [00:00<00:00, 17.51it/s] 50%|█████ | 5/10 [00:00<00:00, 13.34it/s]
--- Text 298 --- Text: 'i feel miserable and he doesnt care' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel miserable and he doesnt care What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel miserable and he doesnt care What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.57it/s]
--- Text 299 --- Text: 'i am not surprised cause its like ok when you feel crappy and it just continues for like days or so you really try to avoid getting that sickness again' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i am not surprised cause its like ok when you feel crappy and it just continues for like days or so you really try to avoid getting that sickness again What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am not surprised cause its like ok when you feel crappy and it just continues for like days or so you really try to avoid getting that sickness again What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Surprise Predicted Emotion: surprise --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.86it/s]
--- Text 300 --- Text: 'im feeling slightly irritable today' True Emotion: anger --- Zero-Shot Prompting --- Prompt: im feeling slightly irritable today What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling slightly irritable today What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: irritability Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.34it/s] 0%| | 0/10 [00:00<?, ?it/s]
--- Text 301 --- Text: 'i like to add things that i already completed in my day to a new list just to feel more productive when i cross them off' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i like to add things that i already completed in my day to a new list just to feel more productive when i cross them off What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i like to add things that i already completed in my day to a new list just to feel more productive when i cross them off What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.83it/s] 100%|██████████| 10/10 [00:00<00:00, 17.14it/s]
--- Text 302 --- Text: 'i always feel rushed during these emails which i dont like but asa este' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i always feel rushed during these emails which i dont like but asa este What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i always feel rushed during these emails which i dont like but asa este What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I always feel rushed during these emails Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.60it/s]
--- Text 303 --- Text: 'i feel like now its more of sweet apple now' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel like now its more of sweet apple now What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like now its more of sweet apple now What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.61it/s] 40%|████ | 4/10 [00:00<00:00, 10.77it/s]
--- Text 304 --- Text: 'i was so impressed with the show especially for hs and i was moved by these talented kids but then again i feel very passionate about productions and music and theatre in schools so i am always happy to endorse many hs productions throughout their seasons during this time' True Emotion: love --- Zero-Shot Prompting --- Prompt: i was so impressed with the show especially for hs and i was moved by these talented kids but then again i feel very passionate about productions and music and theatre in schools so i am always happy to endorse many hs productions throughout their seasons during this time What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i was so impressed with the show especially for hs and i was moved by these talented kids but then again i feel very passionate about productions and music and theatre in schools so i am always happy to endorse many hs productions throughout their seasons during this time What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.73it/s]
--- Text 305 --- Text: 'i feel like i should be supporting them somehow but im not sure how' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like i should be supporting them somehow but im not sure how What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like i should be supporting them somehow but im not sure how What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.37it/s]
--- Text 306 --- Text: 'i have a lot going on in my life and feel overwhelmed' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i have a lot going on in my life and feel overwhelmed What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have a lot going on in my life and feel overwhelmed What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.67it/s]
--- Text 307 --- Text: 'i took for granted a few weeks ago is really weird and makes me feel really agitated and frustrated' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i took for granted a few weeks ago is really weird and makes me feel really agitated and frustrated What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i took for granted a few weeks ago is really weird and makes me feel really agitated and frustrated What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Agitation Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.26it/s] 30%|███ | 3/10 [00:00<00:00, 10.67it/s]
--- Text 308 --- Text: 'i also know what it feels like to be in a relationship where you feel like a burden and too much and not worth loving or pursuing and its just' True Emotion: love --- Zero-Shot Prompting --- Prompt: i also know what it feels like to be in a relationship where you feel like a burden and too much and not worth loving or pursuing and its just What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i also know what it feels like to be in a relationship where you feel like a burden and too much and not worth loving or pursuing and its just What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness. Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.55it/s]
--- Text 309 --- Text: 'i know what you mean about feeling agitated' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i know what you mean about feeling agitated What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i know what you mean about feeling agitated What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.19it/s]
--- Text 310 --- Text: 'i am feeling pressured to blog the bad' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i am feeling pressured to blog the bad What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling pressured to blog the bad What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I am feeling pressured to blog the Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.13it/s]
--- Text 311 --- Text: 'i feel like being sociable and just aaaah' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like being sociable and just aaaah What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like being sociable and just aaaah What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: aaaah I hope you Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.35it/s]
--- Text 312 --- Text: 'i didnt feel at all deprived having it in my chai this morning' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i didnt feel at all deprived having it in my chai this morning What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i didnt feel at all deprived having it in my chai this morning What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.56it/s]
--- Text 313 --- Text: 'i was feeling very unsure of myself and at near breaking point' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i was feeling very unsure of myself and at near breaking point What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was feeling very unsure of myself and at near breaking point What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.67it/s]
--- Text 314 --- Text: 'i remember leaving church feeling invigorated every sunday and tuesday night' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i remember leaving church feeling invigorated every sunday and tuesday night What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i remember leaving church feeling invigorated every sunday and tuesday night What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.94it/s]
--- Text 315 --- Text: 'i will nolonger tell anybody how i feel or what im thinking cause all it seems to do is get me more hated than i already am' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i will nolonger tell anybody how i feel or what im thinking cause all it seems to do is get me more hated than i already am What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i will nolonger tell anybody how i feel or what im thinking cause all it seems to do is get me more hated than i already am What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.79it/s]
--- Text 316 --- Text: 'i asked her what she meant by shes gonna feel jealous having loada of girls over me and then she said maybee i do like you a bitt' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i asked her what she meant by shes gonna feel jealous having loada of girls over me and then she said maybee i do like you a bitt What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i asked her what she meant by shes gonna feel jealous having loada of girls over me and then she said maybee i do like you a bitt What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 16.44it/s] 30%|███ | 3/10 [00:00<00:00, 10.54it/s]
--- Text 317 --- Text: 'i feel that i am supporting the troops by demanding that we not send our young men and women into harm s way to bear arms against a country that has done nothing to threaten us at any point' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel that i am supporting the troops by demanding that we not send our young men and women into harm s way to bear arms against a country that has done nothing to threaten us at any point What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i feel that i am supporting the troops by demanding that we not send our young men and women into harm s way to bear arms against a country that has done nothing to threaten us at any point What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 90%|█████████ | 9/10 [00:00<00:00, 15.73it/s]
--- Text 318 --- Text: 'i feel all funny sometimes' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i feel all funny sometimes What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel all funny sometimes What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel all funny sometimes. Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.58it/s]
--- Text 319 --- Text: 'i am feeling crampy and cranky' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i am feeling crampy and cranky What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling crampy and cranky What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: crankiness Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.47it/s] 50%|█████ | 5/10 [00:00<00:00, 13.55it/s]
--- Text 320 --- Text: 'i indicated then i was feeling quite overwhelmed with work responsibilities teaching traveling and writing' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i indicated then i was feeling quite overwhelmed with work responsibilities teaching traveling and writing What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Over Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i indicated then i was feeling quite overwhelmed with work responsibilities teaching traveling and writing What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Overwhelmed Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.02it/s] 50%|█████ | 5/10 [00:00<00:00, 12.93it/s]
--- Text 321 --- Text: 'i just say that i am not even feeling embarrassed when i pause and rewind my dvred commercials if the breaking dawn preview comes on' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i just say that i am not even feeling embarrassed when i pause and rewind my dvred commercials if the breaking dawn preview comes on What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i just say that i am not even feeling embarrassed when i pause and rewind my dvred commercials if the breaking dawn preview comes on What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.68it/s]
--- Text 322 --- Text: 'i spend a lot of time feeling disappointed with myself for not doing a better job at attaining my goals' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i spend a lot of time feeling disappointed with myself for not doing a better job at attaining my goals What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i spend a lot of time feeling disappointed with myself for not doing a better job at attaining my goals What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.01it/s] 40%|████ | 4/10 [00:00<00:00, 12.03it/s]
--- Text 323 --- Text: 'i feel stressed but i love the feeling of the calming spirit of my heavenly father and the feeling to keep working' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel stressed but i love the feeling of the calming spirit of my heavenly father and the feeling to keep working What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i feel stressed but i love the feeling of the calming spirit of my heavenly father and the feeling to keep working What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.50it/s] 30%|███ | 3/10 [00:00<00:00, 11.41it/s]
--- Text 324 --- Text: 'i feel more thankful being greeted by many friends and families' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel more thankful being greeted by many friends and families What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i feel more thankful being greeted by many friends and families What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.43it/s]
--- Text 325 --- Text: 'i no longer feel doomed to falling into the abyss with no way out' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i no longer feel doomed to falling into the abyss with no way out What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i no longer feel doomed to falling into the abyss with no way out What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fear Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.85it/s]
--- Text 326 --- Text: 'i bought it at urban outfitters so it could fit mm film and have been feeling remorseful ever since' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i bought it at urban outfitters so it could fit mm film and have been feeling remorseful ever since What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i bought it at urban outfitters so it could fit mm film and have been feeling remorseful ever since What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.47it/s] 20%|██ | 2/10 [00:00<00:00, 9.47it/s]
--- Text 327 --- Text: 'i just can t feel accepted' True Emotion: love --- Zero-Shot Prompting --- Prompt: i just can t feel accepted What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i just can t feel accepted What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.72it/s]
--- Text 328 --- Text: 'ive a feeling briar beagle would give me one of her disgusted looks if i even tried exercising her in these souless surroundings' True Emotion: anger --- Zero-Shot Prompting --- Prompt: ive a feeling briar beagle would give me one of her disgusted looks if i even tried exercising her in these souless surroundings What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: ive a feeling briar beagle would give me one of her disgusted looks if i even tried exercising her in these souless surroundings What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Briar Beagle's dis Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.22it/s] 40%|████ | 4/10 [00:00<00:00, 12.68it/s]
--- Text 329 --- Text: 'i just need to accept to be treated like a princess everyday without feeling dumb about the situation' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i just need to accept to be treated like a princess everyday without feeling dumb about the situation What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i just need to accept to be treated like a princess everyday without feeling dumb about the situation What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.05it/s] 60%|██████ | 6/10 [00:00<00:00, 13.44it/s]
--- Text 330 --- Text: 'i just got up from a nap feeling really rotten so exhausted that i feel like i could just wilt onto the floor just sitting here' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i just got up from a nap feeling really rotten so exhausted that i feel like i could just wilt onto the floor just sitting here What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is exhaustion Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i just got up from a nap feeling really rotten so exhausted that i feel like i could just wilt onto the floor just sitting here What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Exhaustion Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.44it/s]
--- Text 331 --- Text: 'i feel very indecisive about it' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel very indecisive about it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel very indecisive about it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: indecisive Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.45it/s] 20%|██ | 2/10 [00:00<00:00, 9.41it/s]
--- Text 332 --- Text: 'i feel if the pressure vessel has been seriously damaged then far more radiation would have leaked he said' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel if the pressure vessel has been seriously damaged then far more radiation would have leaked he said What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i feel if the pressure vessel has been seriously damaged then far more radiation would have leaked he said What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear. Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.26it/s]
--- Text 333 --- Text: 'i have better things to do than to feel humiliated' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i have better things to do than to feel humiliated What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have better things to do than to feel humiliated What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: i have better things to do than to Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.46it/s] 30%|███ | 3/10 [00:00<00:00, 11.37it/s]
--- Text 334 --- Text: 'i feel check the wonder in all that you see you ve got to get loving unconditionally' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel check the wonder in all that you see you ve got to get loving unconditionally What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i feel check the wonder in all that you see you ve got to get loving unconditionally What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.59it/s]
--- Text 335 --- Text: 'ive been feeling a bit melancholy' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: ive been feeling a bit melancholy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: ive been feeling a bit melancholy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 0%| | 0/10 [00:00<?, ?it/s]
--- Text 336 --- Text: 'i believe that feeling accepted in a non judgemental way can be healing' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i believe that feeling accepted in a non judgemental way can be healing What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i believe that feeling accepted in a non judgemental way can be healing What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.91it/s]
--- Text 337 --- Text: 'i do feel stressed' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i do feel stressed What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i do feel stressed What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: stress Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 60%|██████ | 6/10 [00:00<00:00, 14.26it/s]
--- Text 338 --- Text: 'i feel benevolent enough to buy them some peanuts and other treats' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel benevolent enough to buy them some peanuts and other treats What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel benevolent enough to buy them some peanuts and other treats What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Benevolence Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.27it/s]
--- Text 339 --- Text: 'i feel fine class pin it button count layout horizontal pin it' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel fine class pin it button count layout horizontal pin it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel fine class pin it button count layout horizontal pin it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: The text is describing a person who is feeling Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.97it/s] 50%|█████ | 5/10 [00:00<00:00, 13.56it/s]
--- Text 340 --- Text: 'i feel so worthless and useless these past weeks just because im a certified by stander at home' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel so worthless and useless these past weeks just because im a certified by stander at home What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel so worthless and useless these past weeks just because im a certified by stander at home What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.47it/s] 100%|██████████| 10/10 [00:00<00:00, 17.27it/s]
--- Text 341 --- Text: 'i feel immensely distracted by the barrage of media i receive solicit' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel immensely distracted by the barrage of media i receive solicit What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel immensely distracted by the barrage of media i receive solicit What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel immensely distracted Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.80it/s]
--- Text 342 --- Text: 'ive been feeling from my adoring fans that would be teh whole like of you who are my friends here i felt brave and excited and ventrured forth with guitar in hand to a local open mic night' True Emotion: love --- Zero-Shot Prompting --- Prompt: ive been feeling from my adoring fans that would be teh whole like of you who are my friends here i felt brave and excited and ventrured forth with guitar in hand to a local open mic night What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: ive been feeling from my adoring fans that would be teh whole like of you who are my friends here i felt brave and excited and ventrured forth with guitar in hand to a local open mic night What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.48it/s] 20%|██ | 2/10 [00:00<00:00, 9.52it/s]
--- Text 343 --- Text: 'i love and captured an atmospheric feeling in their landscapes that really impressed me' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i love and captured an atmospheric feeling in their landscapes that really impressed me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i love and captured an atmospheric feeling in their landscapes that really impressed me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 70%|███████ | 7/10 [00:00<00:00, 14.21it/s]
--- Text 344 --- Text: 'is hand started fondling his aching cock through the fabric of his boxers and he instinctively arched his back to feel more of the delicious sensation' True Emotion: joy --- Zero-Shot Prompting --- Prompt: is hand started fondling his aching cock through the fabric of his boxers and he instinctively arched his back to feel more of the delicious sensation What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: is hand started fondling his aching cock through the fabric of his boxers and he instinctively arched his back to feel more of the delicious sensation What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Answer: Arousal Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.74it/s] 30%|███ | 3/10 [00:00<00:00, 11.43it/s]
--- Text 345 --- Text: 'i am feeling energized productive and creative' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am feeling energized productive and creative What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i am feeling energized productive and creative What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.75it/s]
--- Text 346 --- Text: 'i am feeling lucky to have him' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am feeling lucky to have him What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling lucky to have him What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.68it/s]
--- Text 347 --- Text: 'i feel is vital to keeping my spirit young even as my body fades' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel is vital to keeping my spirit young even as my body fades What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel is vital to keeping my spirit young even as my body fades What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.27it/s] 20%|██ | 2/10 [00:00<00:00, 8.67it/s]
--- Text 348 --- Text: 'i feel agitated and annoyed more than worried or fearful but these feelings can easily lead to being short tempered with my family and feelings of disharmony' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel agitated and annoyed more than worried or fearful but these feelings can easily lead to being short tempered with my family and feelings of disharmony What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i feel agitated and annoyed more than worried or fearful but these feelings can easily lead to being short tempered with my family and feelings of disharmony What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
100%|██████████| 10/10 [00:00<00:00, 17.72it/s] 20%|██ | 2/10 [00:00<00:00, 9.53it/s]
--- Text 349 --- Text: 'i still feel scared every time i go into a strange place' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i still feel scared every time i go into a strange place What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i still feel scared every time i go into a strange place What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear. Predicted Emotion: fear --------------------
100%|██████████| 10/10 [00:00<00:00, 17.74it/s] 100%|██████████| 10/10 [00:00<00:00, 17.05it/s]
--- Text 350 --- Text: 'i don t feel the author s talented' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i don t feel the author s talented What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i don t feel the author s talented What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: The author does not feel talented. Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.44it/s] 40%|████ | 4/10 [00:00<00:00, 12.90it/s]
--- Text 351 --- Text: 'i feel so jaded and bored' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel so jaded and bored What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is bored Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so jaded and bored What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: boredom Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.93it/s]
--- Text 352 --- Text: 'im pretty sure and its been about a week and a half so although im feeling kind of betrayed and disillusioned by men at the moment everythings okay' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im pretty sure and its been about a week and a half so although im feeling kind of betrayed and disillusioned by men at the moment everythings okay What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im pretty sure and its been about a week and a half so although im feeling kind of betrayed and disillusioned by men at the moment everythings okay What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.89it/s]
--- Text 353 --- Text: 'i feel like ive lost my mind' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like ive lost my mind What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like ive lost my mind What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.50it/s]
--- Text 354 --- Text: 'i could feel his breath on me and smell the sweet scent of him' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i could feel his breath on me and smell the sweet scent of him What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i could feel his breath on me and smell the sweet scent of him What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.64it/s]
--- Text 355 --- Text: 'i could just take my beliefs and feelings and lock them in a safe somewhere until i get my human life squared away i and just about everyone i know would be a lot happier or perhaps not' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i could just take my beliefs and feelings and lock them in a safe somewhere until i get my human life squared away i and just about everyone i know would be a lot happier or perhaps not What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i could just take my beliefs and feelings and lock them in a safe somewhere until i get my human life squared away i and just about everyone i know would be a lot happier or perhaps not What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.69it/s]
--- Text 356 --- Text: 'i am feeling sinfully horny this sunday morning' True Emotion: love --- Zero-Shot Prompting --- Prompt: i am feeling sinfully horny this sunday morning What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling sinfully horny this sunday morning What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.46it/s] 30%|███ | 3/10 [00:00<00:00, 11.39it/s]
--- Text 357 --- Text: 'i just feel like someone out there has to listen and be sympathetic and then' True Emotion: love --- Zero-Shot Prompting --- Prompt: i just feel like someone out there has to listen and be sympathetic and then What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i just feel like someone out there has to listen and be sympathetic and then What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness. Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.05it/s] 50%|█████ | 5/10 [00:00<00:00, 12.93it/s]
--- Text 358 --- Text: 'ive feeling a little blank and could think of nothing to write about which might be interesting to explore or had my mind captivated' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: ive feeling a little blank and could think of nothing to write about which might be interesting to explore or had my mind captivated What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is blankness Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: ive feeling a little blank and could think of nothing to write about which might be interesting to explore or had my mind captivated What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.02it/s]
--- Text 359 --- Text: 'i feel as the sleep drained from my head i sat up my dog nudging me for affection my wife too has been wanting affection' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel as the sleep drained from my head i sat up my dog nudging me for affection my wife too has been wanting affection What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel as the sleep drained from my head i sat up my dog nudging me for affection my wife too has been wanting affection What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.68it/s]
--- Text 360 --- Text: 'i feel to aid other women with infertility disorders this valuable individual guidance is offered for a restricted number of people' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel to aid other women with infertility disorders this valuable individual guidance is offered for a restricted number of people What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel to aid other women with infertility disorders this valuable individual guidance is offered for a restricted number of people What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.28it/s] 40%|████ | 4/10 [00:00<00:00, 12.05it/s]
--- Text 361 --- Text: 'i remember feeling envious but then why would a young healthy person envy someone who s just barely survived' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i remember feeling envious but then why would a young healthy person envy someone who s just barely survived What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i remember feeling envious but then why would a young healthy person envy someone who s just barely survived What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: envy Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.01it/s]
--- Text 362 --- Text: 'im still feeling very emotional' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im still feeling very emotional What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im still feeling very emotional What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I'm still feeling very emotional Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.41it/s]
--- Text 363 --- Text: 'im in that last bit of sleep before i get up in the morning i feel like that emotional energy just waits for me' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im in that last bit of sleep before i get up in the morning i feel like that emotional energy just waits for me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im in that last bit of sleep before i get up in the morning i feel like that emotional energy just waits for me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.41it/s]
--- Text 364 --- Text: 'i know nothing is going to change even i feel very envious to these people but i cant stop feeling jealous to these people because its a human beings instinct to act so' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i know nothing is going to change even i feel very envious to these people but i cant stop feeling jealous to these people because its a human beings instinct to act so What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i know nothing is going to change even i feel very envious to these people but i cant stop feeling jealous to these people because its a human beings instinct to act so What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: envy Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.30it/s] 50%|█████ | 5/10 [00:00<00:00, 13.27it/s]
--- Text 365 --- Text: 'im happy i feel out of energy and not very inspired to do my crafts' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im happy i feel out of energy and not very inspired to do my crafts What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im happy i feel out of energy and not very inspired to do my crafts What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.90it/s] 40%|████ | 4/10 [00:00<00:00, 11.99it/s]
--- Text 366 --- Text: 'i was struck by the masculine feel of the strong graphics and deep colors in this months painting nighthawks by edward hopper' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i was struck by the masculine feel of the strong graphics and deep colors in this months painting nighthawks by edward hopper What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was struck by the masculine feel of the strong graphics and deep colors in this months painting nighthawks by edward hopper What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.73it/s]
--- Text 367 --- Text: 'i feel like youre just not there some body that im trying to be affectionate with it feels like im molesting some stranger i dont even know' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel like youre just not there some body that im trying to be affectionate with it feels like im molesting some stranger i dont even know What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like youre just not there some body that im trying to be affectionate with it feels like im molesting some stranger i dont even know What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.80it/s] 40%|████ | 4/10 [00:00<00:00, 11.93it/s]
--- Text 368 --- Text: 'i think it s the opposite i get to feel defeated because i was doing everything possible to keep baby healthy and my sugars in check' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i think it s the opposite i get to feel defeated because i was doing everything possible to keep baby healthy and my sugars in check What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i think it s the opposite i get to feel defeated because i was doing everything possible to keep baby healthy and my sugars in check What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.19it/s]
--- Text 369 --- Text: 'i am trying not to feel bitter but how else can i feel when it seems my desire is pretty much impossible' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i am trying not to feel bitter but how else can i feel when it seems my desire is pretty much impossible What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am trying not to feel bitter but how else can i feel when it seems my desire is pretty much impossible What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Bitter Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.69it/s] 50%|█████ | 5/10 [00:00<00:00, 13.27it/s]
--- Text 370 --- Text: 'i feel if i am nagged i stop caring' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel if i am nagged i stop caring What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i feel if i am nagged i stop caring What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Nagged. Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.68it/s]
--- Text 371 --- Text: 'i just feel totally useless today' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i just feel totally useless today What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i just feel totally useless today What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.84it/s]
--- Text 372 --- Text: 'i feel honored to receive the grassroots preservation award' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel honored to receive the grassroots preservation award What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel honored to receive the grassroots preservation award What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.75it/s] 30%|███ | 3/10 [00:00<00:00, 11.41it/s]
--- Text 373 --- Text: 'i feel contented just hearing him said that hellip' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel contented just hearing him said that hellip What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is contentment Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel contented just hearing him said that hellip What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Contentment Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.75it/s]
--- Text 374 --- Text: 'i am reminded of pavement yurusei yatsura and coheed and cambria without feeling offended that they have ripped them off' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i am reminded of pavement yurusei yatsura and coheed and cambria without feeling offended that they have ripped them off What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am reminded of pavement yurusei yatsura and coheed and cambria without feeling offended that they have ripped them off What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I am reminded of Pavement Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 18.58it/s] 70%|███████ | 7/10 [00:00<00:00, 14.68it/s]
--- Text 375 --- Text: 'i feel no positive regard' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel no positive regard What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel no positive regard What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: i feel no positive regard Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.42it/s] 100%|██████████| 10/10 [00:00<00:00, 17.07it/s]
--- Text 376 --- Text: 'im feeling a lot less ugly duckling and a lot more a href http' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im feeling a lot less ugly duckling and a lot more a href http What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The text is expressing a positive emotion Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling a lot less ugly duckling and a lot more a href http What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I'm feeling a lot less ugly Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.57it/s]
--- Text 377 --- Text: 'i suppose if one was feeling generous one could say i was stressed by the elevator ride' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i suppose if one was feeling generous one could say i was stressed by the elevator ride What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i suppose if one was feeling generous one could say i was stressed by the elevator ride What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.57it/s]
--- Text 378 --- Text: 'im feeling kind of melancholy and really want to go home and cuddle up with my boys' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im feeling kind of melancholy and really want to go home and cuddle up with my boys What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling kind of melancholy and really want to go home and cuddle up with my boys What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.87it/s]
--- Text 379 --- Text: 'i feel like the people that i myself love want and need don t talk to me and don t connect with me anymore because they have fucked up mental health and emotional problems that i can t help contribute contain understand or encompass' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel like the people that i myself love want and need don t talk to me and don t connect with me anymore because they have fucked up mental health and emotional problems that i can t help contribute contain understand or encompass What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like the people that i myself love want and need don t talk to me and don t connect with me anymore because they have fucked up mental health and emotional problems that i can t help contribute contain understand or encompass What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.36it/s] 50%|█████ | 5/10 [00:00<00:00, 12.62it/s]
--- Text 380 --- Text: 'i feel that the suffering is more than i can bear i take refuge in the lord in the blessed sacrament and i speak to him with profound silence' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel that the suffering is more than i can bear i take refuge in the lord in the blessed sacrament and i speak to him with profound silence What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel that the suffering is more than i can bear i take refuge in the lord in the blessed sacrament and i speak to him with profound silence What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.54it/s]
--- Text 381 --- Text: 'i feel afraid agn lol whats new' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel afraid agn lol whats new What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel afraid agn lol whats new What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear. Predicted Emotion: fear --------------------
100%|██████████| 10/10 [00:00<00:00, 16.40it/s] 40%|████ | 4/10 [00:00<00:00, 11.86it/s]
--- Text 382 --- Text: 'i am writing and sharing here is much more about my own story and what i believe with all my heart the world needs to know the riches we have in god than me feeling angry towards or trying to bash the people and leaders and parents' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i am writing and sharing here is much more about my own story and what i believe with all my heart the world needs to know the riches we have in god than me feeling angry towards or trying to bash the people and leaders and parents What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i am writing and sharing here is much more about my own story and what i believe with all my heart the world needs to know the riches we have in god than me feeling angry towards or trying to bash the people and leaders and parents What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.01it/s]
--- Text 383 --- Text: 'im feeling dazed and alot of things in my mind' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: im feeling dazed and alot of things in my mind What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling dazed and alot of things in my mind What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Dazed Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.53it/s]
--- Text 384 --- Text: 'i feel so scared when the voices from there start to speak to me' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel so scared when the voices from there start to speak to me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so scared when the voices from there start to speak to me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear. Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.83it/s]
--- Text 385 --- Text: 'i feel very honoured to have been part of the bond family and very much hope i have a chance to work with them again sometime in the future' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel very honoured to have been part of the bond family and very much hope i have a chance to work with them again sometime in the future What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel very honoured to have been part of the bond family and very much hope i have a chance to work with them again sometime in the future What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.01it/s] 40%|████ | 4/10 [00:00<00:00, 12.42it/s]
--- Text 386 --- Text: 'i feel insulted pete edochie responds to death' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel insulted pete edochie responds to death What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel insulted pete edochie responds to death What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.97it/s]
--- Text 387 --- Text: 'i feel but not to such a hostile extent' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel but not to such a hostile extent What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel but not to such a hostile extent What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.33it/s]
--- Text 388 --- Text: 'i always feel so pressured' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i always feel so pressured What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i always feel so pressured What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: pressured Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.09it/s]
--- Text 389 --- Text: 'i electrocuted my thumb and i cant type too well because i cant really you know feel some of my fingers as an acceptable excuse for a late paper' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i electrocuted my thumb and i cant type too well because i cant really you know feel some of my fingers as an acceptable excuse for a late paper What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i electrocuted my thumb and i cant type too well because i cant really you know feel some of my fingers as an acceptable excuse for a late paper What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.73it/s] 100%|██████████| 10/10 [00:00<00:00, 17.28it/s]
--- Text 390 --- Text: 'i carried my phone in my pocket and didn t feel the pull to get lost in it' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i carried my phone in my pocket and didn t feel the pull to get lost in it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i carried my phone in my pocket and didn t feel the pull to get lost in it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: NONE OF THE ABOVE Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.01it/s]
--- Text 391 --- Text: 'i sit here writing this i feel unhappy inside' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i sit here writing this i feel unhappy inside What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i sit here writing this i feel unhappy inside What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.77it/s] 50%|█████ | 5/10 [00:00<00:00, 13.00it/s]
--- Text 392 --- Text: 'i could feel my mother s sympathetic dread as i was diagnosed' True Emotion: love --- Zero-Shot Prompting --- Prompt: i could feel my mother s sympathetic dread as i was diagnosed What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i could feel my mother s sympathetic dread as i was diagnosed What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.97it/s] 30%|███ | 3/10 [00:00<00:00, 11.44it/s]
--- Text 393 --- Text: 'i get disappointed it makes me feel so rejected especially being disappointed by a loved one' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i get disappointed it makes me feel so rejected especially being disappointed by a loved one What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is disappointment Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i get disappointed it makes me feel so rejected especially being disappointed by a loved one What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: disappointment. Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 60%|██████ | 6/10 [00:00<00:00, 14.03it/s]
--- Text 394 --- Text: 'i left there feeling brow beaten' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i left there feeling brow beaten What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i left there feeling brow beaten What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: brow beaten Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.92it/s]
--- Text 395 --- Text: 'i am feeling vulnerable nervous worried anxious and a bit lost' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i am feeling vulnerable nervous worried anxious and a bit lost What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling vulnerable nervous worried anxious and a bit lost What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Anxiety Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.85it/s] 40%|████ | 4/10 [00:00<00:00, 12.64it/s]
--- Text 396 --- Text: 'i was feeling defeated i usually pick things up easily this way but i just wasn t getting it' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i was feeling defeated i usually pick things up easily this way but i just wasn t getting it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is defeat. Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was feeling defeated i usually pick things up easily this way but i just wasn t getting it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.92it/s]
--- Text 397 --- Text: 'i am most certainly an acquired taste but lately many of those around me have seemed to feel the taste to be bitter' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i am most certainly an acquired taste but lately many of those around me have seemed to feel the taste to be bitter What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am most certainly an acquired taste but lately many of those around me have seemed to feel the taste to be bitter What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.13it/s] 40%|████ | 4/10 [00:00<00:00, 11.95it/s]
--- Text 398 --- Text: 'i feel i am rich because my life both real and online is filled with friends and family with whom i would not want to live without' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel i am rich because my life both real and online is filled with friends and family with whom i would not want to live without What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i feel i am rich because my life both real and online is filled with friends and family with whom i would not want to live without What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.35it/s]
--- Text 399 --- Text: 'i feel bad saying this because i should be happy but i dont think this way that im going is for me anymore' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel bad saying this because i should be happy but i dont think this way that im going is for me anymore What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel bad saying this because i should be happy but i dont think this way that im going is for me anymore What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.40it/s]
--- Text 400 --- Text: 'ive been feeling afraid a lot lately' True Emotion: fear --- Zero-Shot Prompting --- Prompt: ive been feeling afraid a lot lately What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: ive been feeling afraid a lot lately What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear. Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.20it/s]
--- Text 401 --- Text: 'i see momo feel shy momo hmmm gt me heyy momo' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i see momo feel shy momo hmmm gt me heyy momo What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i see momo feel shy momo hmmm gt me heyy momo What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: * sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.67it/s]
--- Text 402 --- Text: 'i feel amused looking at the little turtle who sneaked in with them' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel amused looking at the little turtle who sneaked in with them What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel amused looking at the little turtle who sneaked in with them What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Surprise Predicted Emotion: surprise --------------------
100%|██████████| 10/10 [00:00<00:00, 17.27it/s] 20%|██ | 2/10 [00:00<00:00, 8.78it/s]
--- Text 403 --- Text: 'i purple month doesnt feel surprised in fact zhuo feng up many pupils all clear xiao her identity dont even say main star feng of young' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i purple month doesnt feel surprised in fact zhuo feng up many pupils all clear xiao her identity dont even say main star feng of young What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is surprise. Predicted Emotion: surprise --- Constraint-Based Prompting --- Prompt: i purple month doesnt feel surprised in fact zhuo feng up many pupils all clear xiao her identity dont even say main star feng of young What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: surprise. Predicted Emotion: surprise --------------------
100%|██████████| 10/10 [00:00<00:00, 16.59it/s] 50%|█████ | 5/10 [00:00<00:00, 11.75it/s]
--- Text 404 --- Text: 'i feel like there is no way out being humiliated by asa a guy i was obssessed about who played an embarrassing joke on me getting caught by tabbys wife tabby is a lover i once had who was married and i blindly fell in love with him' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like there is no way out being humiliated by asa a guy i was obssessed about who played an embarrassing joke on me getting caught by tabbys wife tabby is a lover i once had who was married and i blindly fell in love with him What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like there is no way out being humiliated by asa a guy i was obssessed about who played an embarrassing joke on me getting caught by tabbys wife tabby is a lover i once had who was married and i blindly fell in love with him What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.54it/s]
--- Text 405 --- Text: 'i feel like breathing is as delicate as dried rose petals sometimes' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel like breathing is as delicate as dried rose petals sometimes What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like breathing is as delicate as dried rose petals sometimes What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.28it/s] 40%|████ | 4/10 [00:00<00:00, 12.03it/s]
--- Text 406 --- Text: 'im thankful because i feel somewhat energetic instead of the dead fish that i would become every time every chemo' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im thankful because i feel somewhat energetic instead of the dead fish that i would become every time every chemo What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: im thankful because i feel somewhat energetic instead of the dead fish that i would become every time every chemo What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.21it/s] 40%|████ | 4/10 [00:00<00:00, 11.89it/s]
--- Text 407 --- Text: 'i feel so honored today and i want to share the emotion and my gratitude because i received a very complimentary email from someone who reads thought provoking perspectives' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel so honored today and i want to share the emotion and my gratitude because i received a very complimentary email from someone who reads thought provoking perspectives What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so honored today and i want to share the emotion and my gratitude because i received a very complimentary email from someone who reads thought provoking perspectives What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.48it/s] 40%|████ | 4/10 [00:00<00:00, 12.38it/s]
--- Text 408 --- Text: 'ive tried bare minerals but it makes me feel like my face is dirty' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: ive tried bare minerals but it makes me feel like my face is dirty What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: ive tried bare minerals but it makes me feel like my face is dirty What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.84it/s] 30%|███ | 3/10 [00:00<00:00, 11.14it/s]
--- Text 409 --- Text: 'i feel quite passionate about and that is how old should children be to undergo beauty treatments' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel quite passionate about and that is how old should children be to undergo beauty treatments What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel quite passionate about and that is how old should children be to undergo beauty treatments What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.52it/s]
--- Text 410 --- Text: 'i feel like i m going to struggle and fail and suffer and be really dumb' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like i m going to struggle and fail and suffer and be really dumb What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like i m going to struggle and fail and suffer and be really dumb What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.75it/s]
--- Text 411 --- Text: 'im feel a little bit shy to talked to her for a second but manage myself because i saw from her eyes that theres something with this girl' True Emotion: fear --- Zero-Shot Prompting --- Prompt: im feel a little bit shy to talked to her for a second but manage myself because i saw from her eyes that theres something with this girl What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feel a little bit shy to talked to her for a second but manage myself because i saw from her eyes that theres something with this girl What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 16.76it/s] 30%|███ | 3/10 [00:00<00:00, 10.53it/s]
--- Text 412 --- Text: 'i love that this is a place a series with no real heroes and i love that the way the couples in these books fall in love feels just as violent and crazy as the place that they call home' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i love that this is a place a series with no real heroes and i love that the way the couples in these books fall in love feels just as violent and crazy as the place that they call home What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i love that this is a place a series with no real heroes and i love that the way the couples in these books fall in love feels just as violent and crazy as the place that they call home What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.41it/s]
--- Text 413 --- Text: 'i will feel more lively and full of bounce' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i will feel more lively and full of bounce What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i will feel more lively and full of bounce What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.27it/s]
--- Text 414 --- Text: 'i am and always have been a very sincere nice feeling sociable compassionate helpful girl' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am and always have been a very sincere nice feeling sociable compassionate helpful girl What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am and always have been a very sincere nice feeling sociable compassionate helpful girl What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Nice! You are a very s Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.92it/s]
--- Text 415 --- Text: 'i feel like an obnoxious nagging call times everyday tag alonger that he is finally sick of tolerating and is now just giving the cold shoulder' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel like an obnoxious nagging call times everyday tag alonger that he is finally sick of tolerating and is now just giving the cold shoulder What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like an obnoxious nagging call times everyday tag alonger that he is finally sick of tolerating and is now just giving the cold shoulder What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.20it/s] 30%|███ | 3/10 [00:00<00:00, 11.36it/s]
--- Text 416 --- Text: 'i loved the feeling i got during an amazing slalom run whether it was in training or in a race' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i loved the feeling i got during an amazing slalom run whether it was in training or in a race What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i loved the feeling i got during an amazing slalom run whether it was in training or in a race What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.48it/s] 40%|████ | 4/10 [00:00<00:00, 12.67it/s]
--- Text 417 --- Text: 'i was feeling especially shy and awkward because i didn t know many people there' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i was feeling especially shy and awkward because i didn t know many people there What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was feeling especially shy and awkward because i didn t know many people there What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: A. Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.62it/s]
--- Text 418 --- Text: 'im still feeling a little groggy from the lack of sleep so i shall try to replenish it' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im still feeling a little groggy from the lack of sleep so i shall try to replenish it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im still feeling a little groggy from the lack of sleep so i shall try to replenish it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I am feeling a little groggy Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.40it/s]
--- Text 419 --- Text: 'i have been sitting at home revising today and all in all feeling quite stressed' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i have been sitting at home revising today and all in all feeling quite stressed What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have been sitting at home revising today and all in all feeling quite stressed What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: stress Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.28it/s]
--- Text 420 --- Text: 'i guess feelings aren t meant to be inhibited or prohibited' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i guess feelings aren t meant to be inhibited or prohibited What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i guess feelings aren t meant to be inhibited or prohibited What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I guess feelings aren't meant to Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.99it/s] 50%|█████ | 5/10 [00:00<00:00, 13.33it/s]
--- Text 421 --- Text: 'i embraced feeling thankful that the middle wall of partition had thus far been broken down' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i embraced feeling thankful that the middle wall of partition had thus far been broken down What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i embraced feeling thankful that the middle wall of partition had thus far been broken down What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Thankfulness Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.89it/s]
--- Text 422 --- Text: 'i began to feel very strange' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i began to feel very strange What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i began to feel very strange What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: surprise Predicted Emotion: surprise --------------------
100%|██████████| 10/10 [00:00<00:00, 17.22it/s] 30%|███ | 3/10 [00:00<00:00, 10.23it/s]
--- Text 423 --- Text: 'i didn t feel pressured or constrained in my choices to behave in a particular way i just felt very busy' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i didn t feel pressured or constrained in my choices to behave in a particular way i just felt very busy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: busy Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i didn t feel pressured or constrained in my choices to behave in a particular way i just felt very busy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Busy Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.02it/s] 40%|████ | 4/10 [00:00<00:00, 11.88it/s]
--- Text 424 --- Text: 'i had one of my low carb meal bars for breakfast and was feeling smug when i spotted the left over pies muffins and attractive foods' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i had one of my low carb meal bars for breakfast and was feeling smug when i spotted the left over pies muffins and attractive foods What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i had one of my low carb meal bars for breakfast and was feeling smug when i spotted the left over pies muffins and attractive foods What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Surprise Predicted Emotion: surprise --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.30it/s]
--- Text 425 --- Text: 'im going through life feeling now rather than being totally numb' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im going through life feeling now rather than being totally numb What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im going through life feeling now rather than being totally numb What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.73it/s]
--- Text 426 --- Text: 'i dont want flowers or candy but the kind of guy that knows i like thinly sliced limes in my mineral water because it makes me feel glamorous and is humored by how pretentious that is' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i dont want flowers or candy but the kind of guy that knows i like thinly sliced limes in my mineral water because it makes me feel glamorous and is humored by how pretentious that is What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i dont want flowers or candy but the kind of guy that knows i like thinly sliced limes in my mineral water because it makes me feel glamorous and is humored by how pretentious that is What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.21it/s] 50%|█████ | 5/10 [00:00<00:00, 13.31it/s]
--- Text 427 --- Text: 'i feel unprotected a class post count link href http reprogramming in process' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel unprotected a class post count link href http reprogramming in process What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel unprotected a class post count link href http reprogramming in process What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.69it/s]
--- Text 428 --- Text: 'i always feel really confident of my life and my choices when i go home' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i always feel really confident of my life and my choices when i go home What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i always feel really confident of my life and my choices when i go home What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Confidence Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.53it/s]
--- Text 429 --- Text: 'i was feeling more and more frustrated with each session he attended' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i was feeling more and more frustrated with each session he attended What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was feeling more and more frustrated with each session he attended What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: frustration Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.52it/s]
--- Text 430 --- Text: 'i feel like in the last year especially i ve gone from a girl to a woman and despite how hesitant i have always been about getting older next year i will be twenty four i am surprised at how pleased i am to have done so' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel like in the last year especially i ve gone from a girl to a woman and despite how hesitant i have always been about getting older next year i will be twenty four i am surprised at how pleased i am to have done so What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like in the last year especially i ve gone from a girl to a woman and despite how hesitant i have always been about getting older next year i will be twenty four i am surprised at how pleased i am to have done so What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Surprise Predicted Emotion: surprise --------------------
100%|██████████| 10/10 [00:00<00:00, 17.30it/s] 30%|███ | 3/10 [00:00<00:00, 10.69it/s]
--- Text 431 --- Text: 'i feel attacked or insulted it is helpful to realize that the idea of attack is alive and well in my own mind' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel attacked or insulted it is helpful to realize that the idea of attack is alive and well in my own mind What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i feel attacked or insulted it is helpful to realize that the idea of attack is alive and well in my own mind What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.81it/s]
--- Text 432 --- Text: 'ive missed that feeling and ive missed being there and ive missed having something to work towards that keeps my focus on me and keeps it off of my phone and the potential trouble it can get me in' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: ive missed that feeling and ive missed being there and ive missed having something to work towards that keeps my focus on me and keeps it off of my phone and the potential trouble it can get me in What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: ive missed that feeling and ive missed being there and ive missed having something to work towards that keeps my focus on me and keeps it off of my phone and the potential trouble it can get me in What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 60%|██████ | 6/10 [00:00<00:00, 13.76it/s]
--- Text 433 --- Text: 'im feeling a bit uncomfortable with myself too' True Emotion: fear --- Zero-Shot Prompting --- Prompt: im feeling a bit uncomfortable with myself too What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling a bit uncomfortable with myself too What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: uncomfortable Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.27it/s]
--- Text 434 --- Text: 'i know that i have it nowhere near as worse as my brethren overseas but right now i feel like im being physically emotionally and spiritually assaulted' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i know that i have it nowhere near as worse as my brethren overseas but right now i feel like im being physically emotionally and spiritually assaulted What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i know that i have it nowhere near as worse as my brethren overseas but right now i feel like im being physically emotionally and spiritually assaulted What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 60%|██████ | 6/10 [00:00<00:00, 13.55it/s]
--- Text 435 --- Text: 'i am feeling so reluctant and overwhelmed i try to think of the alternative abandoning that dream' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i am feeling so reluctant and overwhelmed i try to think of the alternative abandoning that dream What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling so reluctant and overwhelmed i try to think of the alternative abandoning that dream What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Overwhelmed Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.51it/s]
--- Text 436 --- Text: 'i usually like sam but sometimes he gets downright whiny and i ll admit that all the mistakes he made due to sibling rivalry and pride that eventually led to the end of season kind of made me feel less tragic about the whole thing' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i usually like sam but sometimes he gets downright whiny and i ll admit that all the mistakes he made due to sibling rivalry and pride that eventually led to the end of season kind of made me feel less tragic about the whole thing What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i usually like sam but sometimes he gets downright whiny and i ll admit that all the mistakes he made due to sibling rivalry and pride that eventually led to the end of season kind of made me feel less tragic about the whole thing What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.57it/s]
--- Text 437 --- Text: 'i hope shes feeling generous today and treat me to japanese food or something haha have a great day' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i hope shes feeling generous today and treat me to japanese food or something haha have a great day What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i hope shes feeling generous today and treat me to japanese food or something haha have a great day What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.59it/s]
--- Text 438 --- Text: 'i am feeling a bit offended' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i am feeling a bit offended What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling a bit offended What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: offended Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.18it/s] 30%|███ | 3/10 [00:00<00:00, 11.39it/s]
--- Text 439 --- Text: 'i offend easily when i feel my intelligence is insulted' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i offend easily when i feel my intelligence is insulted What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i offend easily when i feel my intelligence is insulted What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
100%|██████████| 10/10 [00:00<00:00, 16.61it/s] 100%|██████████| 10/10 [00:00<00:00, 15.70it/s]
--- Text 440 --- Text: 'i always feel a bit awkward when i comment on someone s blog because i invariably go on rabbit trails and feel as though i ve been overstepping myself so i d like to tell you if you find yourself feeling the same way that i do not mind in the slightest' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i always feel a bit awkward when i comment on someone s blog because i invariably go on rabbit trails and feel as though i ve been overstepping myself so i d like to tell you if you find yourself feeling the same way that i do not mind in the slightest What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i always feel a bit awkward when i comment on someone s blog because i invariably go on rabbit trails and feel as though i ve been overstepping myself so i d like to tell you if you find yourself feeling the same way that i do not mind in the slightest What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: The emotion of this text is: Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.79it/s]
--- Text 441 --- Text: 'i feel like we may be coming to the point in the tv series where the show is incredibly popular but sadly the writers are coming to the end of their story lines and soon there will be nothing left to keep the plot a float' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like we may be coming to the point in the tv series where the show is incredibly popular but sadly the writers are coming to the end of their story lines and soon there will be nothing left to keep the plot a float What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like we may be coming to the point in the tv series where the show is incredibly popular but sadly the writers are coming to the end of their story lines and soon there will be nothing left to keep the plot a float What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B. Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.82it/s]
--- Text 442 --- Text: 'i was entertaining myself with this memory while at the same time feeling like that guy in that movie dazed and confused who says i just keep on getin older and the girls stay the same age' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i was entertaining myself with this memory while at the same time feeling like that guy in that movie dazed and confused who says i just keep on getin older and the girls stay the same age What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was entertaining myself with this memory while at the same time feeling like that guy in that movie dazed and confused who says i just keep on getin older and the girls stay the same age What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.50it/s] 20%|██ | 2/10 [00:00<00:01, 7.32it/s]
--- Text 443 --- Text: 'i had to continue to enforce my no playdate policy which meant i continued to feel angry twice over each day once during a horrible morning drop off and once in the afternoon when i reminded noah that no he couldnt play because of the bad drop off missing mommy' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i had to continue to enforce my no playdate policy which meant i continued to feel angry twice over each day once during a horrible morning drop off and once in the afternoon when i reminded noah that no he couldnt play because of the bad drop off missing mommy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i had to continue to enforce my no playdate policy which meant i continued to feel angry twice over each day once during a horrible morning drop off and once in the afternoon when i reminded noah that no he couldnt play because of the bad drop off missing mommy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger. Predicted Emotion: anger --------------------
100%|██████████| 10/10 [00:00<00:00, 16.87it/s] 40%|████ | 4/10 [00:00<00:00, 12.06it/s]
--- Text 444 --- Text: 'i woke up feeling groggy and grumpy and like the last thing i wanted to do was make dinner' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i woke up feeling groggy and grumpy and like the last thing i wanted to do was make dinner What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is grump Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i woke up feeling groggy and grumpy and like the last thing i wanted to do was make dinner What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: grumpiness. Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 8.81it/s]
--- Text 445 --- Text: 'i wake up feeling like something terrifyingly bad is bound to happen to me before i even get a chance to stick a limb outside of my covers' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i wake up feeling like something terrifyingly bad is bound to happen to me before i even get a chance to stick a limb outside of my covers What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i wake up feeling like something terrifyingly bad is bound to happen to me before i even get a chance to stick a limb outside of my covers What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear. Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.08it/s]
--- Text 446 --- Text: 'i feel god in my life more now than i ever have before and things are so wonderful right now' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel god in my life more now than i ever have before and things are so wonderful right now What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel god in my life more now than i ever have before and things are so wonderful right now What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.41it/s] 40%|████ | 4/10 [00:00<00:00, 11.67it/s]
--- Text 447 --- Text: 'i do feel like ive been a neglectful friend but its due to the fact that i feel like a hinderance so i just stay away' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i do feel like ive been a neglectful friend but its due to the fact that i feel like a hinderance so i just stay away What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i do feel like ive been a neglectful friend but its due to the fact that i feel like a hinderance so i just stay away What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 70%|███████ | 7/10 [00:00<00:00, 13.83it/s]
--- Text 448 --- Text: 'i did not know this i could not look out upon the sea and sky without feeling mildly discontent' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i did not know this i could not look out upon the sea and sky without feeling mildly discontent What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i did not know this i could not look out upon the sea and sky without feeling mildly discontent What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: mildly discontent Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.21it/s]
--- Text 449 --- Text: 'i hate feeling like this this is bullshit ok i m so done bye' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i hate feeling like this this is bullshit ok i m so done bye What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i hate feeling like this this is bullshit ok i m so done bye What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.29it/s] 40%|████ | 4/10 [00:00<00:00, 11.84it/s]
--- Text 450 --- Text: 'i tasted some hari raya cookies and feeling greedy i would go and prebook their kueh makmur and tart because i know their hygiene standard and ingredients' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i tasted some hari raya cookies and feeling greedy i would go and prebook their kueh makmur and tart because i know their hygiene standard and ingredients What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Love Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i tasted some hari raya cookies and feeling greedy i would go and prebook their kueh makmur and tart because i know their hygiene standard and ingredients What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.47it/s] 50%|█████ | 5/10 [00:00<00:00, 13.22it/s]
--- Text 451 --- Text: 'i sit here feeling drained i really wonder what will i do when i reach that point' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i sit here feeling drained i really wonder what will i do when i reach that point What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i sit here feeling drained i really wonder what will i do when i reach that point What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.90it/s]
--- Text 452 --- Text: 'i buy something i go out and look at what else i didnt buy and then after a bit of comparison here and there i suddenly feel dissatisfied with my purchase' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i buy something i go out and look at what else i didnt buy and then after a bit of comparison here and there i suddenly feel dissatisfied with my purchase What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i buy something i go out and look at what else i didnt buy and then after a bit of comparison here and there i suddenly feel dissatisfied with my purchase What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: A. Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.06it/s] 40%|████ | 4/10 [00:00<00:00, 12.00it/s]
--- Text 453 --- Text: 'ive been feeling incredibly inadequate more so than usual and its gotten to a point where i almost feel paralyzed by it' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: ive been feeling incredibly inadequate more so than usual and its gotten to a point where i almost feel paralyzed by it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion in this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: ive been feeling incredibly inadequate more so than usual and its gotten to a point where i almost feel paralyzed by it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.32it/s]
--- Text 454 --- Text: 'im amazed how many men say they feel unloved if the house is messy and they have to fix their own dinner' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im amazed how many men say they feel unloved if the house is messy and they have to fix their own dinner What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im amazed how many men say they feel unloved if the house is messy and they have to fix their own dinner What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.37it/s]
--- Text 455 --- Text: 'i feel a restless weekend heading our way' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel a restless weekend heading our way What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel a restless weekend heading our way What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: restless Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.13it/s] 50%|█████ | 5/10 [00:00<00:00, 13.39it/s]
--- Text 456 --- Text: 'i feel ugly i cover myself with a beautiful blanket in a make believe gown' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel ugly i cover myself with a beautiful blanket in a make believe gown What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel ugly i cover myself with a beautiful blanket in a make believe gown What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.37it/s]
--- Text 457 --- Text: 'i always said i felt so blessed to have him and today that feeling is been reassured many times' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i always said i felt so blessed to have him and today that feeling is been reassured many times What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i always said i felt so blessed to have him and today that feeling is been reassured many times What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.79it/s]
--- Text 458 --- Text: 'i cant do strappy shoes at work i just feel weird so i took these off thrifted ninewest' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i cant do strappy shoes at work i just feel weird so i took these off thrifted ninewest What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i cant do strappy shoes at work i just feel weird so i took these off thrifted ninewest What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.67it/s] 30%|███ | 3/10 [00:00<00:00, 10.29it/s]
--- Text 459 --- Text: 'i love the fact that i look as best i can and i feel terrific because i eat right and constantly exercise' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i love the fact that i look as best i can and i feel terrific because i eat right and constantly exercise What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i love the fact that i look as best i can and i feel terrific because i eat right and constantly exercise What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.15it/s] 20%|██ | 2/10 [00:00<00:00, 8.68it/s]
--- Text 460 --- Text: 'i decent article which i knew likely had good information because my initial response was to feel offended and want to argue despite the fact that it was talking about not doing exactly that' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i decent article which i knew likely had good information because my initial response was to feel offended and want to argue despite the fact that it was talking about not doing exactly that What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is likely anger Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i decent article which i knew likely had good information because my initial response was to feel offended and want to argue despite the fact that it was talking about not doing exactly that What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.37it/s]
--- Text 461 --- Text: 'i have moments where i just feel so overwhelmed that my eyes well up with tears' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i have moments where i just feel so overwhelmed that my eyes well up with tears What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have moments where i just feel so overwhelmed that my eyes well up with tears What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness. Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.26it/s] 40%|████ | 4/10 [00:00<00:00, 12.01it/s]
--- Text 462 --- Text: 'i started feeling thankful for food for being able to enjoy such delicious things and got into cooking and baking healthy meals for my family' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i started feeling thankful for food for being able to enjoy such delicious things and got into cooking and baking healthy meals for my family What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i started feeling thankful for food for being able to enjoy such delicious things and got into cooking and baking healthy meals for my family What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 0%| | 0/10 [00:00<?, ?it/s]
--- Text 463 --- Text: 'i don t want to tag people who think this is silly but if there are people out there who want to be tagged i wouldn t want to make them feel unwelcome' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i don t want to tag people who think this is silly but if there are people out there who want to be tagged i wouldn t want to make them feel unwelcome What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i don t want to tag people who think this is silly but if there are people out there who want to be tagged i wouldn t want to make them feel unwelcome What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.77it/s] 60%|██████ | 6/10 [00:00<00:00, 13.28it/s]
--- Text 464 --- Text: 'im taking is allowing me to get sleep which is wonderful but its leaving me feeling very groggy and nauseated' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im taking is allowing me to get sleep which is wonderful but its leaving me feeling very groggy and nauseated What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im taking is allowing me to get sleep which is wonderful but its leaving me feeling very groggy and nauseated What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Groggy Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.35it/s]
--- Text 465 --- Text: 'i feel an unpleasant drop in my stomach as the elevator doors open at my floor' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel an unpleasant drop in my stomach as the elevator doors open at my floor What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel an unpleasant drop in my stomach as the elevator doors open at my floor What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.67it/s]
--- Text 466 --- Text: 'i feel that this is a highly talented bunch when roling on all cyclinders' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel that this is a highly talented bunch when roling on all cyclinders What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel that this is a highly talented bunch when roling on all cyclinders What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.39it/s]
--- Text 467 --- Text: 'i feel his hand on me to stay faithful' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel his hand on me to stay faithful What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel his hand on me to stay faithful What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.46it/s]
--- Text 468 --- Text: 'i was so focused on my heavy breathing my even strides the drops of sweat on my forehead that i forgot to feel socially awkward' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i was so focused on my heavy breathing my even strides the drops of sweat on my forehead that i forgot to feel socially awkward What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was so focused on my heavy breathing my even strides the drops of sweat on my forehead that i forgot to feel socially awkward What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.51it/s]
--- Text 469 --- Text: 'i cant help feeling this way' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i cant help feeling this way What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i cant help feeling this way What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.03it/s] 30%|███ | 3/10 [00:00<00:00, 10.68it/s]
--- Text 470 --- Text: 'i feel like i would order carryout from if i lived in the area i am still curious to try some of their other tacos' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i feel like i would order carryout from if i lived in the area i am still curious to try some of their other tacos What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is curiosity. Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like i would order carryout from if i lived in the area i am still curious to try some of their other tacos What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 8.38it/s]
--- Text 471 --- Text: 'i feel that i am afraid of whatever ad anything that will happen and idc is it good or bad i am just afraid and i hope god you will help me in whatever i do' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel that i am afraid of whatever ad anything that will happen and idc is it good or bad i am just afraid and i hope god you will help me in whatever i do What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel that i am afraid of whatever ad anything that will happen and idc is it good or bad i am just afraid and i hope god you will help me in whatever i do What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear. Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.54it/s]
--- Text 472 --- Text: 'i entered the living room i had a horrible feeling aching in the depths of my stomach' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i entered the living room i had a horrible feeling aching in the depths of my stomach What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i entered the living room i had a horrible feeling aching in the depths of my stomach What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.28it/s] 40%|████ | 4/10 [00:00<00:00, 12.02it/s]
--- Text 473 --- Text: 'i feel very glad that finland s well known visual artist vesa kivinen had called me to work with him' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel very glad that finland s well known visual artist vesa kivinen had called me to work with him What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i feel very glad that finland s well known visual artist vesa kivinen had called me to work with him What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.13it/s]
--- Text 474 --- Text: 'i feel relatively safe normal or whatever you might call it' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel relatively safe normal or whatever you might call it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel relatively safe normal or whatever you might call it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: normal Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.25it/s]
--- Text 475 --- Text: 'i feel bitchy saying it but i think that next saturday i just want to be alone' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel bitchy saying it but i think that next saturday i just want to be alone What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel bitchy saying it but i think that next saturday i just want to be alone What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Bitchiness Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.81it/s]
--- Text 476 --- Text: 'i feel very honored to have been shortlisted within the patient ambassador volunteer category which recognises members of the public and staff who provide outstanding help and support through volunteering or providing patient opinions either on a public partnership forum or on a patients panel' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel very honored to have been shortlisted within the patient ambassador volunteer category which recognises members of the public and staff who provide outstanding help and support through volunteering or providing patient opinions either on a public partnership forum or on a patients panel What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel very honored to have been shortlisted within the patient ambassador volunteer category which recognises members of the public and staff who provide outstanding help and support through volunteering or providing patient opinions either on a public partnership forum or on a patients panel What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B. Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.57it/s]
--- Text 477 --- Text: 'i feel quite helpless in all of this so prayer is the most effective tool i have because i have no answers and there is nothing else i can offer them right now' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel quite helpless in all of this so prayer is the most effective tool i have because i have no answers and there is nothing else i can offer them right now What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel quite helpless in all of this so prayer is the most effective tool i have because i have no answers and there is nothing else i can offer them right now What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.26it/s] 50%|█████ | 5/10 [00:00<00:00, 12.92it/s]
--- Text 478 --- Text: 'i know that you feel pretty disgusted by the nonstop lefty propaganda the ministry churns out but of the public isn t that tuned in' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i know that you feel pretty disgusted by the nonstop lefty propaganda the ministry churns out but of the public isn t that tuned in What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i know that you feel pretty disgusted by the nonstop lefty propaganda the ministry churns out but of the public isn t that tuned in What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.77it/s]
--- Text 479 --- Text: 'i feel complacent and satisfied' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel complacent and satisfied What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel complacent and satisfied What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: satisfaction. Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.78it/s] 100%|██████████| 10/10 [00:00<00:00, 16.77it/s]
--- Text 480 --- Text: 'i ventured into fabrics amp fabrics on a whim yesterday feeling a bit nervous knowing i would be tempted beyond my comfor' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i ventured into fabrics amp fabrics on a whim yesterday feeling a bit nervous knowing i would be tempted beyond my comfor What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i ventured into fabrics amp fabrics on a whim yesterday feeling a bit nervous knowing i would be tempted beyond my comfor What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I ventured into Fabrics 'n Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.02it/s]
--- Text 481 --- Text: 'i havent been feeling homesick knowing they were all getting together to enjoy my mums cooking did make me want a teleporter' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i havent been feeling homesick knowing they were all getting together to enjoy my mums cooking did make me want a teleporter What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i havent been feeling homesick knowing they were all getting together to enjoy my mums cooking did make me want a teleporter What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.68it/s] 50%|█████ | 5/10 [00:00<00:00, 13.58it/s]
--- Text 482 --- Text: 'i feel ugly and hated' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel ugly and hated What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel ugly and hated What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.29it/s]
--- Text 483 --- Text: 'i was feeling whether it be mad sad disappointed or peaceful' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i was feeling whether it be mad sad disappointed or peaceful What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was feeling whether it be mad sad disappointed or peaceful What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.68it/s]
--- Text 484 --- Text: 'i feel as if we have a talented enough team to win some games and go deep into the tournament' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel as if we have a talented enough team to win some games and go deep into the tournament What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel as if we have a talented enough team to win some games and go deep into the tournament What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.85it/s]
--- Text 485 --- Text: 'i feel i was so innocent to have only one dream to fill my brain and to be crazy about it' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel i was so innocent to have only one dream to fill my brain and to be crazy about it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel i was so innocent to have only one dream to fill my brain and to be crazy about it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.67it/s]
--- Text 486 --- Text: 'i never feel depressed because my cancer and i have learnt to live and sleep with each other' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i never feel depressed because my cancer and i have learnt to live and sleep with each other What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i never feel depressed because my cancer and i have learnt to live and sleep with each other What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.84it/s]
--- Text 487 --- Text: 'i can feel the pressure falling more so on my shoulders and im feeling slightly doubtful of myself which leads to unhappy thoughts not usually like my optimistic self i must say' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i can feel the pressure falling more so on my shoulders and im feeling slightly doubtful of myself which leads to unhappy thoughts not usually like my optimistic self i must say What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i can feel the pressure falling more so on my shoulders and im feeling slightly doubtful of myself which leads to unhappy thoughts not usually like my optimistic self i must say What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.29it/s]
--- Text 488 --- Text: 'i kind of feel a little petty about this' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i kind of feel a little petty about this What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i kind of feel a little petty about this What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.49it/s] 30%|███ | 3/10 [00:00<00:00, 11.12it/s]
--- Text 489 --- Text: 'i hostage negotiator on her case has her feeling hopeful about her future' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i hostage negotiator on her case has her feeling hopeful about her future What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion in this text is hopeful Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i hostage negotiator on her case has her feeling hopeful about her future What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.79it/s] 40%|████ | 4/10 [00:00<00:00, 11.61it/s]
--- Text 490 --- Text: 'i believe that people should choose the causes they feel passionate about and do what they can and i have no right or desire to push my own charities as more worthy than another' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i believe that people should choose the causes they feel passionate about and do what they can and i have no right or desire to push my own charities as more worthy than another What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i believe that people should choose the causes they feel passionate about and do what they can and i have no right or desire to push my own charities as more worthy than another What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.16it/s] 40%|████ | 4/10 [00:00<00:00, 12.01it/s]
--- Text 491 --- Text: 'i feel privileged to be allowed into the sanctum of her studio the many different paintings and studies lining the walls morph and grow week on week' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel privileged to be allowed into the sanctum of her studio the many different paintings and studies lining the walls morph and grow week on week What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel privileged to be allowed into the sanctum of her studio the many different paintings and studies lining the walls morph and grow week on week What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.54it/s] 20%|██ | 2/10 [00:00<00:00, 9.18it/s]
--- Text 492 --- Text: 'i grew up feeling rejected by my male peers' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i grew up feeling rejected by my male peers What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i grew up feeling rejected by my male peers What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.78it/s]
--- Text 493 --- Text: 'i feel like that is where i can make my most valued input and tried to do as much as possible to ensure i did an equal part in the construction' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like that is where i can make my most valued input and tried to do as much as possible to ensure i did an equal part in the construction What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like that is where i can make my most valued input and tried to do as much as possible to ensure i did an equal part in the construction What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.75it/s] 20%|██ | 2/10 [00:00<00:00, 8.51it/s]
--- Text 494 --- Text: 'i described how i was feeling the feeling of being out of control and completely restless the fear of what could still happen my obsession with trying to do it all and the fact that it was just not working' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i described how i was feeling the feeling of being out of control and completely restless the fear of what could still happen my obsession with trying to do it all and the fact that it was just not working What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i described how i was feeling the feeling of being out of control and completely restless the fear of what could still happen my obsession with trying to do it all and the fact that it was just not working What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear. Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.35it/s]
--- Text 495 --- Text: 'i feel very important in my fancy room with my fancy furniture and nice view of downtown dallas' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel very important in my fancy room with my fancy furniture and nice view of downtown dallas What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel very important in my fancy room with my fancy furniture and nice view of downtown dallas What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.43it/s]
--- Text 496 --- Text: 'i wanna feel good again' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i wanna feel good again What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i wanna feel good again What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I wanna feel good again Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.13it/s]
--- Text 497 --- Text: 'i never feel like im not supporting' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i never feel like im not supporting What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i never feel like im not supporting What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: i never feel like im not supporting Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.67it/s]
--- Text 498 --- Text: 'i want you to snap out of it and simply feel simply live laugh enjoy this life no matter how idiotic it is' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i want you to snap out of it and simply feel simply live laugh enjoy this life no matter how idiotic it is What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i want you to snap out of it and simply feel simply live laugh enjoy this life no matter how idiotic it is What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.88it/s]
--- Text 499 --- Text: 'i assumed it would feel casual' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i assumed it would feel casual What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i assumed it would feel casual What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: surprise Predicted Emotion: surprise --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.68it/s]
--- Text 500 --- Text: 'i will admit and it left me feeling shaken and a bit of a goose' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i will admit and it left me feeling shaken and a bit of a goose What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i will admit and it left me feeling shaken and a bit of a goose What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: surprise Predicted Emotion: surprise --------------------
100%|██████████| 10/10 [00:00<00:00, 17.45it/s] 20%|██ | 2/10 [00:00<00:00, 9.51it/s]
--- Text 501 --- Text: 'i feel it is dangerous especially for the new believer who is not grounded in the word of god' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel it is dangerous especially for the new believer who is not grounded in the word of god What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i feel it is dangerous especially for the new believer who is not grounded in the word of god What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear. Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.24it/s]
--- Text 502 --- Text: 'when we rearranged furniture in our flat and got stuck in a chair' True Emotion: anger --- Zero-Shot Prompting --- Prompt: when we rearranged furniture in our flat and got stuck in a chair What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: when we rearranged furniture in our flat and got stuck in a chair What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.46it/s]
--- Text 503 --- Text: 'i am feeling stressed and more than a bit anxious' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i am feeling stressed and more than a bit anxious What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling stressed and more than a bit anxious What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anxiety Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.28it/s] 40%|████ | 4/10 [00:00<00:00, 12.03it/s]
--- Text 504 --- Text: 'i persevered through the storm of rejections feeling confident that i was doing what god had called me to do' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i persevered through the storm of rejections feeling confident that i was doing what god had called me to do What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is confidence. Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i persevered through the storm of rejections feeling confident that i was doing what god had called me to do What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Confidence Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.63it/s]
--- Text 505 --- Text: 'i was feeling comfortable in the first fight i saw things that were working for me but i m expecting a better rendall munroe because i think he might have underestimated me first time around' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i was feeling comfortable in the first fight i saw things that were working for me but i m expecting a better rendall munroe because i think he might have underestimated me first time around What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was feeling comfortable in the first fight i saw things that were working for me but i m expecting a better rendall munroe because i think he might have underestimated me first time around What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.62it/s]
--- Text 506 --- Text: 'im not quite sure how she really feels about it because im pretty sure that she realizes that she is going to miss getting to watch the parade which is something she really enjoys' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im not quite sure how she really feels about it because im pretty sure that she realizes that she is going to miss getting to watch the parade which is something she really enjoys What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im not quite sure how she really feels about it because im pretty sure that she realizes that she is going to miss getting to watch the parade which is something she really enjoys What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.90it/s]
--- Text 507 --- Text: 'i feel somewhat fake in the group' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel somewhat fake in the group What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel somewhat fake in the group What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.52it/s]
--- Text 508 --- Text: 'i was feeling particularly pissed off and wanted to go to a party' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i was feeling particularly pissed off and wanted to go to a party What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was feeling particularly pissed off and wanted to go to a party What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger. Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.83it/s]
--- Text 509 --- Text: 'i feel like im still quite bad at describing my feelings with good words and beautiful phrases' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like im still quite bad at describing my feelings with good words and beautiful phrases What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like im still quite bad at describing my feelings with good words and beautiful phrases What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel like I'm still quite Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.05it/s] 50%|█████ | 5/10 [00:00<00:00, 12.63it/s]
--- Text 510 --- Text: 'i feel so heartbroken over paul walker s tragic disappearance the life of someone so generous beautiful and talented should not end this way as other horrible individuals keep on living torturing assaulting and killing people' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel so heartbroken over paul walker s tragic disappearance the life of someone so generous beautiful and talented should not end this way as other horrible individuals keep on living torturing assaulting and killing people What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel so heartbroken over paul walker s tragic disappearance the life of someone so generous beautiful and talented should not end this way as other horrible individuals keep on living torturing assaulting and killing people What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.90it/s]
--- Text 511 --- Text: 'i feel perfectly mellow' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel perfectly mellow What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel perfectly mellow What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: mellow Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 8.31it/s]
--- Text 512 --- Text: 'i feel i have to give credit to jen mitchell for her gorgeous card a href http www' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel i have to give credit to jen mitchell for her gorgeous card a href http www What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel i have to give credit to jen mitchell for her gorgeous card a href http www What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.98it/s]
--- Text 513 --- Text: 'i am alternating between feeling thrilled to see my dads family this weekend and terrified that i will be a black sheep among their normalcy' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am alternating between feeling thrilled to see my dads family this weekend and terrified that i will be a black sheep among their normalcy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am alternating between feeling thrilled to see my dads family this weekend and terrified that i will be a black sheep among their normalcy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fear Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.76it/s]
--- Text 514 --- Text: 'i feel for my sweet boy' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel for my sweet boy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel for my sweet boy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.56it/s]
--- Text 515 --- Text: 'i feel about as helpless and superfluous as i did when jenn had elaine naturally' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel about as helpless and superfluous as i did when jenn had elaine naturally What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel about as helpless and superfluous as i did when jenn had elaine naturally What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 8.67it/s]
--- Text 516 --- Text: 'i thought i didnt feel anything anymore it was over it was ok well today a different story i feel him i want him my heart hurts thinking he wont be around i still want him around i guess its still valid' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i thought i didnt feel anything anymore it was over it was ok well today a different story i feel him i want him my heart hurts thinking he wont be around i still want him around i guess its still valid What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i thought i didnt feel anything anymore it was over it was ok well today a different story i feel him i want him my heart hurts thinking he wont be around i still want him around i guess its still valid What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.71it/s]
--- Text 517 --- Text: 'im feeling better so hopefully things start falling back into the old routine' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im feeling better so hopefully things start falling back into the old routine What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling better so hopefully things start falling back into the old routine What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.57it/s]
--- Text 518 --- Text: 'i hope you feel incredibly cool now' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i hope you feel incredibly cool now What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i hope you feel incredibly cool now What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.81it/s]
--- Text 519 --- Text: 'i watched the news at the tv' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i watched the news at the tv What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i watched the news at the tv What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.19it/s] 40%|████ | 4/10 [00:00<00:00, 10.73it/s]
--- Text 520 --- Text: 'i didn t really go looking for it but i can definately see where the enjorlas marius ship comes from though sadly i feel it s mostly one sided and that marius is nothing more than a rich schoolboy following his whims without thoughts to the concequences' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i didn t really go looking for it but i can definately see where the enjorlas marius ship comes from though sadly i feel it s mostly one sided and that marius is nothing more than a rich schoolboy following his whims without thoughts to the concequences What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i didn t really go looking for it but i can definately see where the enjorlas marius ship comes from though sadly i feel it s mostly one sided and that marius is nothing more than a rich schoolboy following his whims without thoughts to the concequences What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.66it/s]
--- Text 521 --- Text: 'i feel i should as a gracious gesture apologizing for my latest post about the osp and the rand license terms' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel i should as a gracious gesture apologizing for my latest post about the osp and the rand license terms What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel i should as a gracious gesture apologizing for my latest post about the osp and the rand license terms What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.97it/s] 50%|█████ | 5/10 [00:00<00:00, 12.72it/s]
--- Text 522 --- Text: 'i get people asking me what it feels like to be the most hated man in dallas county said assessor steve helm' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i get people asking me what it feels like to be the most hated man in dallas county said assessor steve helm What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i get people asking me what it feels like to be the most hated man in dallas county said assessor steve helm What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.44it/s] 20%|██ | 2/10 [00:00<00:00, 9.52it/s]
--- Text 523 --- Text: 'i have reported feeling marginalized intimidated and or subjected to threats of retaliation' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i have reported feeling marginalized intimidated and or subjected to threats of retaliation What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i have reported feeling marginalized intimidated and or subjected to threats of retaliation What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.74it/s]
--- Text 524 --- Text: 'im not sure if im more at peace with our situation or if im just not feeling as bitter about it but in the past five months something has changed within me' True Emotion: anger --- Zero-Shot Prompting --- Prompt: im not sure if im more at peace with our situation or if im just not feeling as bitter about it but in the past five months something has changed within me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im not sure if im more at peace with our situation or if im just not feeling as bitter about it but in the past five months something has changed within me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Bitter Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.70it/s] 30%|███ | 3/10 [00:00<00:00, 11.60it/s]
--- Text 525 --- Text: 'i am feeling profoundly peaceful' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am feeling profoundly peaceful What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is peaceful Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling profoundly peaceful What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: peaceful. Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.60it/s]
--- Text 526 --- Text: 'i feel bad then for not accepting who i am' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel bad then for not accepting who i am What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel bad then for not accepting who i am What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.56it/s]
--- Text 527 --- Text: 'i have tried sorting out the area for the cat houses this lunchtime but i guess after the printer ordeal i am feeling quite uptight so it has been put on hold' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i have tried sorting out the area for the cat houses this lunchtime but i guess after the printer ordeal i am feeling quite uptight so it has been put on hold What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have tried sorting out the area for the cat houses this lunchtime but i guess after the printer ordeal i am feeling quite uptight so it has been put on hold What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.38it/s]
--- Text 528 --- Text: 'i made that make me feel dumb and dumber' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i made that make me feel dumb and dumber What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i made that make me feel dumb and dumber What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: dumb Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.46it/s] 50%|█████ | 5/10 [00:00<00:00, 13.57it/s]
--- Text 529 --- Text: 'i have power feeling to justify their laziness and being bitchy against skinny girls' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i have power feeling to justify their laziness and being bitchy against skinny girls What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i have power feeling to justify their laziness and being bitchy against skinny girls What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: bitchy Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 10%|█ | 1/10 [00:00<00:01, 6.35it/s]
--- Text 530 --- Text: 'i feel like my sweet company is finally coming together' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel like my sweet company is finally coming together What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like my sweet company is finally coming together What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 60%|██████ | 6/10 [00:00<00:00, 13.72it/s]
--- Text 531 --- Text: 'im making some more mood icons right now to let you see how i feel and think and of course its all charming' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im making some more mood icons right now to let you see how i feel and think and of course its all charming What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im making some more mood icons right now to let you see how i feel and think and of course its all charming What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: 😊 Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.54it/s]
--- Text 532 --- Text: 'i feel like i am not accepted here i and bucking this force that is coming from all quarters that tells me that something is wrong with me if i am not married with children' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like i am not accepted here i and bucking this force that is coming from all quarters that tells me that something is wrong with me if i am not married with children What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like i am not accepted here i and bucking this force that is coming from all quarters that tells me that something is wrong with me if i am not married with children What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 8.56it/s]
--- Text 533 --- Text: 'i apologise if the pictures are not very good quality but if youre stuck for ideas feel free to check out the websites in the captions' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i apologise if the pictures are not very good quality but if youre stuck for ideas feel free to check out the websites in the captions What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i apologise if the pictures are not very good quality but if youre stuck for ideas feel free to check out the websites in the captions What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.31it/s]
--- Text 534 --- Text: 'i feel fine now even though ive just burned the dinner oops' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel fine now even though ive just burned the dinner oops What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel fine now even though ive just burned the dinner oops What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: oops Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.04it/s]
--- Text 535 --- Text: 'i feel for this divine landmass and all the respect i bear in my heart for the greatness residing on it' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel for this divine landmass and all the respect i bear in my heart for the greatness residing on it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel for this divine landmass and all the respect i bear in my heart for the greatness residing on it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.04it/s]
--- Text 536 --- Text: 'i feel like but im not very fond of that word' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel like but im not very fond of that word What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like but im not very fond of that word What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel like but I'm not Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.49it/s]
--- Text 537 --- Text: 'i feel vulnerable not knowing what is to come and i feel like the rest of my life depends on today' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel vulnerable not knowing what is to come and i feel like the rest of my life depends on today What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel vulnerable not knowing what is to come and i feel like the rest of my life depends on today What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear. Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.36it/s]
--- Text 538 --- Text: 'i feel so damn agitated' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel so damn agitated What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so damn agitated What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.38it/s]
--- Text 539 --- Text: 'i feel confident around him and i am always there if he needs help' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel confident around him and i am always there if he needs help What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel confident around him and i am always there if he needs help What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Confidence Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.24it/s] 100%|██████████| 10/10 [00:00<00:00, 17.05it/s]
--- Text 540 --- Text: 'i feel annoyingly isolated in the hostel with all those people talking outside the room etc' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel annoyingly isolated in the hostel with all those people talking outside the room etc What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion in this text is isolation Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel annoyingly isolated in the hostel with all those people talking outside the room etc What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel annoyingly isolated in the Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.22it/s] 50%|█████ | 5/10 [00:00<00:00, 13.54it/s]
--- Text 541 --- Text: 'i feel like alcoholism is something that is widely accepted as the norm in gay culture' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like alcoholism is something that is widely accepted as the norm in gay culture What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i feel like alcoholism is something that is widely accepted as the norm in gay culture What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.91it/s]
--- Text 542 --- Text: 'im just now realizing i didnt have a diet coke today and that makes me feel proud regardless of the other junk i consumed today' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im just now realizing i didnt have a diet coke today and that makes me feel proud regardless of the other junk i consumed today What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im just now realizing i didnt have a diet coke today and that makes me feel proud regardless of the other junk i consumed today What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.67it/s]
--- Text 543 --- Text: 'i also feel i have accepted my dark side and am finally realizing what of my dark side is healthy' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i also feel i have accepted my dark side and am finally realizing what of my dark side is healthy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i also feel i have accepted my dark side and am finally realizing what of my dark side is healthy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.57it/s]
--- Text 544 --- Text: 'i have spoken about before but the feeling is getting stronger and i am curious if others have similar thoughts' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i have spoken about before but the feeling is getting stronger and i am curious if others have similar thoughts What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have spoken about before but the feeling is getting stronger and i am curious if others have similar thoughts What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I have spoken about before but the feeling Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.58it/s]
--- Text 545 --- Text: 'i feel a bit dull by it all' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel a bit dull by it all What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel a bit dull by it all What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: dullness Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.59it/s]
--- Text 546 --- Text: 'i hope it is because he understands the way i feel i hope he sees what he could miss and is putting the petty negative thoughts aside' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i hope it is because he understands the way i feel i hope he sees what he could miss and is putting the petty negative thoughts aside What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i hope it is because he understands the way i feel i hope he sees what he could miss and is putting the petty negative thoughts aside What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.54it/s]
--- Text 547 --- Text: 'i feel so blessed to be able to share it with you all' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel so blessed to be able to share it with you all What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so blessed to be able to share it with you all What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.34it/s]
--- Text 548 --- Text: 'i feel a little virtuous doing these things but on the other hand nini s tasted better' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel a little virtuous doing these things but on the other hand nini s tasted better What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel a little virtuous doing these things but on the other hand nini s tasted better What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.66it/s]
--- Text 549 --- Text: 'i say i want to be more of people person but i feel very mellow right now' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i say i want to be more of people person but i feel very mellow right now What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i say i want to be more of people person but i feel very mellow right now What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Mellow Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.47it/s]
--- Text 550 --- Text: 'i pull out one of my favorite books to make myself feel miserable' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i pull out one of my favorite books to make myself feel miserable What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i pull out one of my favorite books to make myself feel miserable What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I pull out one of my favorite books Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.55it/s]
--- Text 551 --- Text: 'i feel convinced that im going to shy away from whatever is really good for me' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel convinced that im going to shy away from whatever is really good for me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel convinced that im going to shy away from whatever is really good for me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.27it/s]
--- Text 552 --- Text: 'i feel kind of awkward about doing this here goes' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel kind of awkward about doing this here goes What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel kind of awkward about doing this here goes What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: "I feel kind of awkward about Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.93it/s]
--- Text 553 --- Text: 'i feel like i should not be surprised at this development' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i feel like i should not be surprised at this development What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like i should not be surprised at this development What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Surprise Predicted Emotion: surprise --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.57it/s]
--- Text 554 --- Text: 'i am of snuffling and feeling dull' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i am of snuffling and feeling dull What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am of snuffling and feeling dull What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: dullness Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.48it/s] 100%|██████████| 10/10 [00:00<00:00, 16.92it/s]
--- Text 555 --- Text: 'i need to feel creative and productive' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i need to feel creative and productive What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i need to feel creative and productive What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I need to feel creative and product Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.29it/s] 40%|████ | 4/10 [00:00<00:00, 12.02it/s]
--- Text 556 --- Text: 'i am who god has chosen to help my daughter become the woman god intended her to be even if i don t feel perfect' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am who god has chosen to help my daughter become the woman god intended her to be even if i don t feel perfect What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i am who god has chosen to help my daughter become the woman god intended her to be even if i don t feel perfect What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 16.52it/s] 50%|█████ | 5/10 [00:00<00:00, 12.81it/s]
--- Text 557 --- Text: 'i am not feeling too bad except that my ribs are aching and i have a pulled muscle in my shoulder blade region from all my excruciating hours of hacking my lungs out last night' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i am not feeling too bad except that my ribs are aching and i have a pulled muscle in my shoulder blade region from all my excruciating hours of hacking my lungs out last night What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am not feeling too bad except that my ribs are aching and i have a pulled muscle in my shoulder blade region from all my excruciating hours of hacking my lungs out last night What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: A. Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.20it/s] 50%|█████ | 5/10 [00:00<00:00, 13.60it/s]
--- Text 558 --- Text: 'i am at the point of feeling resentful toward him and i don t want to be' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i am at the point of feeling resentful toward him and i don t want to be What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i am at the point of feeling resentful toward him and i don t want to be What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: resentful Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 8.61it/s]
--- Text 559 --- Text: 'i write this i feel oddly calm like wanting to just relax in a big chair or lay out in the sun' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i write this i feel oddly calm like wanting to just relax in a big chair or lay out in the sun What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i write this i feel oddly calm like wanting to just relax in a big chair or lay out in the sun What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: calm. Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.54it/s]
--- Text 560 --- Text: 'i feel really inspired' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel really inspired What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel really inspired What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: inspired Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.32it/s]
--- Text 561 --- Text: 'i do know that i tell some people if i feel that their question is sincere some of my sacred treasures' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i do know that i tell some people if i feel that their question is sincere some of my sacred treasures What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i do know that i tell some people if i feel that their question is sincere some of my sacred treasures What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I do know that I tell some people Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.94it/s]
--- Text 562 --- Text: 'i can sit here and cry and feel wronged but it wont change the outcome' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i can sit here and cry and feel wronged but it wont change the outcome What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i can sit here and cry and feel wronged but it wont change the outcome What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.23it/s] 100%|██████████| 10/10 [00:00<00:00, 16.74it/s]
--- Text 563 --- Text: 'i was worried that maybe she was sleeping so well because she wasn t getting enough milk and was feeling lethargic' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i was worried that maybe she was sleeping so well because she wasn t getting enough milk and was feeling lethargic What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: worry Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was worried that maybe she was sleeping so well because she wasn t getting enough milk and was feeling lethargic What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sarah was worried that maybe Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.99it/s] 60%|██████ | 6/10 [00:00<00:00, 13.43it/s]
--- Text 564 --- Text: 'i am going to actively learn more about these genres and or practice them so i can feel what i should feel as a dancer gt fearless courageous confident phew' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am going to actively learn more about these genres and or practice them so i can feel what i should feel as a dancer gt fearless courageous confident phew What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am going to actively learn more about these genres and or practice them so i can feel what i should feel as a dancer gt fearless courageous confident phew What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Courageous Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.85it/s]
--- Text 565 --- Text: 'i started feeling a little stressed about leaving on time and making sure we got the getting ready pictures i wanted but everything seemed to workout perfectly' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i started feeling a little stressed about leaving on time and making sure we got the getting ready pictures i wanted but everything seemed to workout perfectly What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i started feeling a little stressed about leaving on time and making sure we got the getting ready pictures i wanted but everything seemed to workout perfectly What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.52it/s]
--- Text 566 --- Text: 'i feel like an ugly monster where i cannot show who i really am lest i seem weird or just plainly an outcast' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like an ugly monster where i cannot show who i really am lest i seem weird or just plainly an outcast What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like an ugly monster where i cannot show who i really am lest i seem weird or just plainly an outcast What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.85it/s]
--- Text 567 --- Text: 'i feel a little guilty that we have this exceptional little girl from ethiopia home and in our arms but this blog continues to surround goosey' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel a little guilty that we have this exceptional little girl from ethiopia home and in our arms but this blog continues to surround goosey What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel a little guilty that we have this exceptional little girl from ethiopia home and in our arms but this blog continues to surround goosey What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.40it/s]
--- Text 568 --- Text: 'i feel the need to layer on fake tan for a night out to give me a bit of colour my clothes do it for me' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel the need to layer on fake tan for a night out to give me a bit of colour my clothes do it for me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel the need to layer on fake tan for a night out to give me a bit of colour my clothes do it for me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.53it/s]
--- Text 569 --- Text: 'i feel a real emotional connection to the ice queen from the north now that you have revealed that inhumanity runs in her bloody family' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel a real emotional connection to the ice queen from the north now that you have revealed that inhumanity runs in her bloody family What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel a real emotional connection to the ice queen from the north now that you have revealed that inhumanity runs in her bloody family What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.34it/s] 40%|████ | 4/10 [00:00<00:00, 12.01it/s]
--- Text 570 --- Text: 'i have been designing earrings for some of my customers bridesmaids which i feel honoured to do' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i have been designing earrings for some of my customers bridesmaids which i feel honoured to do What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i have been designing earrings for some of my customers bridesmaids which i feel honoured to do What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.03it/s] 100%|██████████| 10/10 [00:00<00:00, 16.56it/s]
--- Text 571 --- Text: 'i could adopt and what messages i could think about to help make me feel more peaceful more grateful and just happier right now' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i could adopt and what messages i could think about to help make me feel more peaceful more grateful and just happier right now What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Gr Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i could adopt and what messages i could think about to help make me feel more peaceful more grateful and just happier right now What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: gratitude What are some things Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.54it/s]
--- Text 572 --- Text: 'i feel quite worthless but i hear that that is pretty normal for north americans at this point' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel quite worthless but i hear that that is pretty normal for north americans at this point What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel quite worthless but i hear that that is pretty normal for north americans at this point What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.75it/s] 100%|██████████| 10/10 [00:00<00:00, 17.43it/s]
--- Text 573 --- Text: 'i don t feel well enough to cook' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i don t feel well enough to cook What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i don t feel well enough to cook What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I don't feel well enough to Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.57it/s]
--- Text 574 --- Text: 'i feel so bad about it and hes stood there bewildered' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel so bad about it and hes stood there bewildered What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so bad about it and hes stood there bewildered What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.37it/s]
--- Text 575 --- Text: 'i could feel hundreds of loving people all around the world connecting with earth it was simply beautiful' True Emotion: love --- Zero-Shot Prompting --- Prompt: i could feel hundreds of loving people all around the world connecting with earth it was simply beautiful What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i could feel hundreds of loving people all around the world connecting with earth it was simply beautiful What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.26it/s] 50%|█████ | 5/10 [00:00<00:00, 12.96it/s]
--- Text 576 --- Text: 'i feel not having a generous spirit or a forgiving nature closes me off from accepting gifts from the universe' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel not having a generous spirit or a forgiving nature closes me off from accepting gifts from the universe What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel not having a generous spirit or a forgiving nature closes me off from accepting gifts from the universe What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.48it/s] 40%|████ | 4/10 [00:00<00:00, 12.69it/s]
--- Text 577 --- Text: 'i feel accepted and loved by a community of derby girls that i helped to create' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel accepted and loved by a community of derby girls that i helped to create What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i feel accepted and loved by a community of derby girls that i helped to create What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.94it/s]
--- Text 578 --- Text: 'i feel utterly disgusted with myself right now and am contemplating death every waking moment ever since she uttered those few words' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel utterly disgusted with myself right now and am contemplating death every waking moment ever since she uttered those few words What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel utterly disgusted with myself right now and am contemplating death every waking moment ever since she uttered those few words What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.03it/s] 100%|██████████| 10/10 [00:00<00:00, 16.65it/s]
--- Text 579 --- Text: 'i often feel confused as to whether i have bipolar or just a really hard core sinful nature' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i often feel confused as to whether i have bipolar or just a really hard core sinful nature What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i often feel confused as to whether i have bipolar or just a really hard core sinful nature What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I often feel confused as to whether i Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.80it/s]
--- Text 580 --- Text: 'i am feeling very thankful' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am feeling very thankful What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling very thankful What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Thankfulness Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.44it/s]
--- Text 581 --- Text: 'i feel privileged to have played against him' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel privileged to have played against him What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel privileged to have played against him What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.95it/s]
--- Text 582 --- Text: 'i read it at a time amp place where i was feeling less than perfect' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i read it at a time amp place where i was feeling less than perfect What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i read it at a time amp place where i was feeling less than perfect What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.53it/s]
--- Text 583 --- Text: 'im happy but i feel all this pressure to do one thing or another amp it makes me unhappy' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im happy but i feel all this pressure to do one thing or another amp it makes me unhappy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im happy but i feel all this pressure to do one thing or another amp it makes me unhappy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.75it/s]
--- Text 584 --- Text: 'i feel it is worthwhile to give you all a more in depth city sized if you will look at one of our cycle days' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel it is worthwhile to give you all a more in depth city sized if you will look at one of our cycle days What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel it is worthwhile to give you all a more in depth city sized if you will look at one of our cycle days What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel it is worthwhile to give Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.79it/s] 100%|██████████| 10/10 [00:00<00:00, 16.26it/s]
--- Text 585 --- Text: 'i was still feeling so exhausted from my workouts on monday and tuesday that all i did was go for a walk at the park for about' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i was still feeling so exhausted from my workouts on monday and tuesday that all i did was go for a walk at the park for about What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was still feeling so exhausted from my workouts on monday and tuesday that all i did was go for a walk at the park for about What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I was still feeling so exhausted from Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.26it/s]
--- Text 586 --- Text: 'i grabbed my dog and hugged her fiercly for the next hour or so until i began to feel a bit like myself again but i havent completly shaken the feeling and have been feeling rather depressed anxious all day' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i grabbed my dog and hugged her fiercly for the next hour or so until i began to feel a bit like myself again but i havent completly shaken the feeling and have been feeling rather depressed anxious all day What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i grabbed my dog and hugged her fiercly for the next hour or so until i began to feel a bit like myself again but i havent completly shaken the feeling and have been feeling rather depressed anxious all day What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.11it/s]
--- Text 587 --- Text: 'i found myself feeling inhibited and shushing her quite a lot' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i found myself feeling inhibited and shushing her quite a lot What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i found myself feeling inhibited and shushing her quite a lot What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Inhibited Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.22it/s] 50%|█████ | 5/10 [00:00<00:00, 12.78it/s]
--- Text 588 --- Text: 'i admit that i am jet lagged so during the daylight i feel groggy almost hung over while at night when everyone is tucked in and snoozing a light pops in my brain and i transform into the ever ready bunny' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i admit that i am jet lagged so during the daylight i feel groggy almost hung over while at night when everyone is tucked in and snoozing a light pops in my brain and i transform into the ever ready bunny What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i admit that i am jet lagged so during the daylight i feel groggy almost hung over while at night when everyone is tucked in and snoozing a light pops in my brain and i transform into the ever ready bunny What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B. Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.65it/s]
--- Text 589 --- Text: 'i often throw myself into work when i m not with them that same maxim from last week if i feel discouraged the way i move forwards is to offer encouragement to others' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i often throw myself into work when i m not with them that same maxim from last week if i feel discouraged the way i move forwards is to offer encouragement to others What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i often throw myself into work when i m not with them that same maxim from last week if i feel discouraged the way i move forwards is to offer encouragement to others What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.57it/s]
--- Text 590 --- Text: 'i feel a lot better about the way i wrote this bit of the code' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel a lot better about the way i wrote this bit of the code What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel a lot better about the way i wrote this bit of the code What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.54it/s]
--- Text 591 --- Text: 'i was supposed to feel sympathy for emma im afraid i failed' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i was supposed to feel sympathy for emma im afraid i failed What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was supposed to feel sympathy for emma im afraid i failed What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I was supposed to feel sympathy for Emma Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:01, 7.51it/s]
--- Text 592 --- Text: 'i feel inside this life is like a game sometimes then you came around me the walls just dissapeared nothing to surround me keep me from my fears im unprotected see how ive opened up youve made me trust coz ive never felt like this before im naked around you does it show' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel inside this life is like a game sometimes then you came around me the walls just dissapeared nothing to surround me keep me from my fears im unprotected see how ive opened up youve made me trust coz ive never felt like this before im naked around you does it show What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel inside this life is like a game sometimes then you came around me the walls just dissapeared nothing to surround me keep me from my fears im unprotected see how ive opened up youve made me trust coz ive never felt like this before im naked around you does it show What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.06it/s]
--- Text 593 --- Text: 'i have no energy to get angry or upset anymore i just feel a little resigned' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i have no energy to get angry or upset anymore i just feel a little resigned What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have no energy to get angry or upset anymore i just feel a little resigned What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: resignation. Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.29it/s]
--- Text 594 --- Text: 'i cant tell you how many times in the four months we have been seeing each other seriously that we have had to have serious emotional talks because one or both of us was feeling tender' True Emotion: love --- Zero-Shot Prompting --- Prompt: i cant tell you how many times in the four months we have been seeing each other seriously that we have had to have serious emotional talks because one or both of us was feeling tender What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i cant tell you how many times in the four months we have been seeing each other seriously that we have had to have serious emotional talks because one or both of us was feeling tender What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.54it/s]
--- Text 595 --- Text: 'i am feeling so emotional about your brothers arrival' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i am feeling so emotional about your brothers arrival What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling so emotional about your brothers arrival What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.41it/s]
--- Text 596 --- Text: 'im even feeling liked by the girls who hate pretty much everyone' True Emotion: love --- Zero-Shot Prompting --- Prompt: im even feeling liked by the girls who hate pretty much everyone What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im even feeling liked by the girls who hate pretty much everyone What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.03it/s]
--- Text 597 --- Text: 'i go through my day feeling your movements and am amazed that something so miraculous is happening in my body its like a special secret only you and i have' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i go through my day feeling your movements and am amazed that something so miraculous is happening in my body its like a special secret only you and i have What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i go through my day feeling your movements and am amazed that something so miraculous is happening in my body its like a special secret only you and i have What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.59it/s]
--- Text 598 --- Text: 'i feel is valuable and i want to share' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel is valuable and i want to share What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel is valuable and i want to share What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel is valuable and i want to Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.29it/s]
--- Text 599 --- Text: 'i feel so unloved without you next to me but when im with you' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel so unloved without you next to me but when im with you What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so unloved without you next to me but when im with you What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.01it/s] 50%|█████ | 5/10 [00:00<00:00, 12.95it/s]
--- Text 600 --- Text: 'i feel myself falling into the pit of buying it from her i think he s for real i m just skeptical of the women' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel myself falling into the pit of buying it from her i think he s for real i m just skeptical of the women What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i feel myself falling into the pit of buying it from her i think he s for real i m just skeptical of the women What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.65it/s] 50%|█████ | 5/10 [00:00<00:00, 12.54it/s]
--- Text 601 --- Text: 'i was learning to just deal with the nausea amp manage the unpleasantness of it at work trying to keep anyone from knowing but my sister told me there was no need to suffer amp feel miserable amp to call my dr for some zofran' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i was learning to just deal with the nausea amp manage the unpleasantness of it at work trying to keep anyone from knowing but my sister told me there was no need to suffer amp feel miserable amp to call my dr for some zofran What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was learning to just deal with the nausea amp manage the unpleasantness of it at work trying to keep anyone from knowing but my sister told me there was no need to suffer amp feel miserable amp to call my dr for some zofran What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B. Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.89it/s]
--- Text 602 --- Text: 'im feeling greedy for right now' True Emotion: anger --- Zero-Shot Prompting --- Prompt: im feeling greedy for right now What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling greedy for right now What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: greed Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.11it/s] 40%|████ | 4/10 [00:00<00:00, 12.70it/s]
--- Text 603 --- Text: 'i justified in feeling slighted or am i just being ungrateful' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i justified in feeling slighted or am i just being ungrateful What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i justified in feeling slighted or am i just being ungrateful What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Slighted Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.22it/s]
--- Text 604 --- Text: 'i feel like it s waiting in the wings just patiently waiting for me to be distracted enough so it can take me down and take everything i love in this world away and destroy me' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel like it s waiting in the wings just patiently waiting for me to be distracted enough so it can take me down and take everything i love in this world away and destroy me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like it s waiting in the wings just patiently waiting for me to be distracted enough so it can take me down and take everything i love in this world away and destroy me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fear Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.62it/s]
--- Text 605 --- Text: 'i feel like i fucked up big time but i have to protect a and myself' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel like i fucked up big time but i have to protect a and myself What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like i fucked up big time but i have to protect a and myself What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear Predicted Emotion: fear --------------------
100%|██████████| 10/10 [00:00<00:00, 16.56it/s] 50%|█████ | 5/10 [00:00<00:00, 12.87it/s]
--- Text 606 --- Text: 'i feel like my mind is blank and empty' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like my mind is blank and empty What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like my mind is blank and empty What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.00it/s] 100%|██████████| 10/10 [00:00<00:00, 16.76it/s]
--- Text 607 --- Text: 'i don t feel comfortable playing games with them presenting the bad guy as really a misunderstood good guy or vice versa' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i don t feel comfortable playing games with them presenting the bad guy as really a misunderstood good guy or vice versa What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i don t feel comfortable playing games with them presenting the bad guy as really a misunderstood good guy or vice versa What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I don't feel comfortable playing games Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.33it/s] 40%|████ | 4/10 [00:00<00:00, 12.66it/s]
--- Text 608 --- Text: 'i listen to the advice of my eating disorder will i actually feel better' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i listen to the advice of my eating disorder will i actually feel better What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i listen to the advice of my eating disorder will i actually feel better What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.72it/s]
--- Text 609 --- Text: 'i bought the gb iphone i got a apple store credit i feel like they were sympathetic to early buyers and responded appropriately' True Emotion: love --- Zero-Shot Prompting --- Prompt: i bought the gb iphone i got a apple store credit i feel like they were sympathetic to early buyers and responded appropriately What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i bought the gb iphone i got a apple store credit i feel like they were sympathetic to early buyers and responded appropriately What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.20it/s]
--- Text 610 --- Text: 'im feeling a lot more optimistic about my future' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im feeling a lot more optimistic about my future What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling a lot more optimistic about my future What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Optimism Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 10%|█ | 1/10 [00:00<00:01, 6.51it/s]
--- Text 611 --- Text: 'i feel pissed off and angry' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel pissed off and angry What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel pissed off and angry What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
100%|██████████| 10/10 [00:00<00:00, 16.60it/s] 50%|█████ | 5/10 [00:00<00:00, 11.50it/s]
--- Text 612 --- Text: 'i couldnt help feeling for him and this awful predicament he lives with on a daily and nightly basis and i was just so glad that once bel started to see the light he stuck it out and stood by daniel whilst no one else did including his family who im afraid i got really disgusted with' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i couldnt help feeling for him and this awful predicament he lives with on a daily and nightly basis and i was just so glad that once bel started to see the light he stuck it out and stood by daniel whilst no one else did including his family who im afraid i got really disgusted with What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i couldnt help feeling for him and this awful predicament he lives with on a daily and nightly basis and i was just so glad that once bel started to see the light he stuck it out and stood by daniel whilst no one else did including his family who im afraid i got really disgusted with What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.70it/s]
--- Text 613 --- Text: 'im feeling so completely mellow and perfect tonight' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im feeling so completely mellow and perfect tonight What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling so completely mellow and perfect tonight What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: calm Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.20it/s] 100%|██████████| 10/10 [00:00<00:00, 17.03it/s]
--- Text 614 --- Text: 'i feel curious because i would like to explore what is at the top of the helterskelter like plant' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i feel curious because i would like to explore what is at the top of the helterskelter like plant What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is curiosity. Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel curious because i would like to explore what is at the top of the helterskelter like plant What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel curious because I would like to Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.25it/s]
--- Text 615 --- Text: 'ive learned that there are angels on earth who feel me as i feel them who stand by with a loving thought a healing heart or a steady hand just as i would also offer without a moments hesitation in return always' True Emotion: love --- Zero-Shot Prompting --- Prompt: ive learned that there are angels on earth who feel me as i feel them who stand by with a loving thought a healing heart or a steady hand just as i would also offer without a moments hesitation in return always What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: ive learned that there are angels on earth who feel me as i feel them who stand by with a loving thought a healing heart or a steady hand just as i would also offer without a moments hesitation in return always What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.58it/s]
--- Text 616 --- Text: 'i feel that the packaging is really lovely and the product itself just does everything you ask' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel that the packaging is really lovely and the product itself just does everything you ask What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel that the packaging is really lovely and the product itself just does everything you ask What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.14it/s]
--- Text 617 --- Text: 'i feel ive ignored it too long this year' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel ive ignored it too long this year What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel ive ignored it too long this year What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: ignored Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.39it/s]
--- Text 618 --- Text: 'i know different because i feel in your hugs and kisses that im perfect just the way i am' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i know different because i feel in your hugs and kisses that im perfect just the way i am What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i know different because i feel in your hugs and kisses that im perfect just the way i am What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 11.74it/s]
--- Text 619 --- Text: 'i am feeling a little more relaxed i am certainly not feeling refreshed thanks to drunk dudes who decided letting off fireworks every half an hour all night would be super fun and the fact that it s impossible to sleep in the freezing cold with a complaining toddler but i have certainly rebooted' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am feeling a little more relaxed i am certainly not feeling refreshed thanks to drunk dudes who decided letting off fireworks every half an hour all night would be super fun and the fact that it s impossible to sleep in the freezing cold with a complaining toddler but i have certainly rebooted What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling a little more relaxed i am certainly not feeling refreshed thanks to drunk dudes who decided letting off fireworks every half an hour all night would be super fun and the fact that it s impossible to sleep in the freezing cold with a complaining toddler but i have certainly rebooted What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.10it/s] 100%|██████████| 10/10 [00:00<00:00, 16.34it/s]
--- Text 620 --- Text: 'i definitely feel there s some useful information here for anyone facing similar questions to those i had during this time of my life' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i definitely feel there s some useful information here for anyone facing similar questions to those i had during this time of my life What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i definitely feel there s some useful information here for anyone facing similar questions to those i had during this time of my life What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: The emotion of this text is: love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.60it/s]
--- Text 621 --- Text: 'i too feel a sense of melancholy for them' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i too feel a sense of melancholy for them What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i too feel a sense of melancholy for them What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.62it/s]
--- Text 622 --- Text: 'im sad if some people are unhappy about the flag for religious reasons but i know many religious people who do not feel it goes against their faith and they are very supportive' True Emotion: love --- Zero-Shot Prompting --- Prompt: im sad if some people are unhappy about the flag for religious reasons but i know many religious people who do not feel it goes against their faith and they are very supportive What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im sad if some people are unhappy about the flag for religious reasons but i know many religious people who do not feel it goes against their faith and they are very supportive What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.45it/s] 90%|█████████ | 9/10 [00:00<00:00, 15.53it/s]
--- Text 623 --- Text: 'i don t feel brave though' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i don t feel brave though What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i don t feel brave though What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I don't feel brave though Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.40it/s] 30%|███ | 3/10 [00:00<00:00, 10.54it/s]
--- Text 624 --- Text: 'i walked near the hotel and i felt very obvious and uneasy all the warnings about petty crime i read in the guidebook and maybe some residual from years ago left me feeling threatened' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i walked near the hotel and i felt very obvious and uneasy all the warnings about petty crime i read in the guidebook and maybe some residual from years ago left me feeling threatened What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i walked near the hotel and i felt very obvious and uneasy all the warnings about petty crime i read in the guidebook and maybe some residual from years ago left me feeling threatened What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fear Predicted Emotion: fear --------------------
100%|██████████| 10/10 [00:00<00:00, 17.47it/s] 30%|███ | 3/10 [00:00<00:00, 11.00it/s]
--- Text 625 --- Text: 'i feel like i m finally losing that stubborn little bit of extra stuff in my lower belly' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel like i m finally losing that stubborn little bit of extra stuff in my lower belly What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i feel like i m finally losing that stubborn little bit of extra stuff in my lower belly What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.83it/s] 50%|█████ | 5/10 [00:00<00:00, 13.04it/s]
--- Text 626 --- Text: 'i am feeling overwhelmed by trying to do it all that i think on the women before me' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i am feeling overwhelmed by trying to do it all that i think on the women before me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling overwhelmed by trying to do it all that i think on the women before me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.96it/s]
--- Text 627 --- Text: 'i remember feeling so frightened that i could feel emotions at that high a level' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i remember feeling so frightened that i could feel emotions at that high a level What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i remember feeling so frightened that i could feel emotions at that high a level What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 60%|██████ | 6/10 [00:00<00:00, 14.06it/s]
--- Text 628 --- Text: 'i feel inside coz i m so fucking horny' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel inside coz i m so fucking horny What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel inside coz i m so fucking horny What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Answer: horny Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.30it/s] 50%|█████ | 5/10 [00:00<00:00, 13.55it/s]
--- Text 629 --- Text: 'i have tested positive but i have never taken drugs and i feel innocent says martina' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i have tested positive but i have never taken drugs and i feel innocent says martina What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i have tested positive but i have never taken drugs and i feel innocent says martina What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.68it/s]
--- Text 630 --- Text: 'im so proud of you no words can describe the way that makes my heart feel thank you god for my supportive amazing hubbard' True Emotion: love --- Zero-Shot Prompting --- Prompt: im so proud of you no words can describe the way that makes my heart feel thank you god for my supportive amazing hubbard What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im so proud of you no words can describe the way that makes my heart feel thank you god for my supportive amazing hubbard What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.30it/s] 40%|████ | 4/10 [00:00<00:00, 11.84it/s]
--- Text 631 --- Text: 'i have made about sex i feel that women enjoy sex when their body and emotions are admired and respected' True Emotion: love --- Zero-Shot Prompting --- Prompt: i have made about sex i feel that women enjoy sex when their body and emotions are admired and respected What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i have made about sex i feel that women enjoy sex when their body and emotions are admired and respected What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Respect Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.32it/s]
--- Text 632 --- Text: 'i feel no need to work up acceptable conversation fodder' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel no need to work up acceptable conversation fodder What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel no need to work up acceptable conversation fodder What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: None of the above. The text does Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.29it/s] 40%|████ | 4/10 [00:00<00:00, 12.01it/s]
--- Text 633 --- Text: 'i had just hiked up and down a long steep hillside loaded with grass and bushes so i was feeling pretty doubtful id be able to find it' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i had just hiked up and down a long steep hillside loaded with grass and bushes so i was feeling pretty doubtful id be able to find it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i had just hiked up and down a long steep hillside loaded with grass and bushes so i was feeling pretty doubtful id be able to find it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear Predicted Emotion: fear --------------------
100%|██████████| 10/10 [00:00<00:00, 17.02it/s] 30%|███ | 3/10 [00:00<00:00, 11.07it/s]
--- Text 634 --- Text: 'i really like the color scheme since it makes me feel peaceful clean and simple' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i really like the color scheme since it makes me feel peaceful clean and simple What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is calmness Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i really like the color scheme since it makes me feel peaceful clean and simple What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.81it/s]
--- Text 635 --- Text: 'i feels so lame' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feels so lame What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feels so lame What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.50it/s] 40%|████ | 4/10 [00:00<00:00, 12.70it/s]
--- Text 636 --- Text: 'i personally feel that it is a very creative present and everything packed inside a brown paper bag' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i personally feel that it is a very creative present and everything packed inside a brown paper bag What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i personally feel that it is a very creative present and everything packed inside a brown paper bag What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.74it/s]
--- Text 637 --- Text: 'i feel so fearless in these post grieving days' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel so fearless in these post grieving days What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so fearless in these post grieving days What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.52it/s]
--- Text 638 --- Text: 'i feel so blessed to be married to him because he loves his stepchildren' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel so blessed to be married to him because he loves his stepchildren What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so blessed to be married to him because he loves his stepchildren What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.84it/s]
--- Text 639 --- Text: 'i dropped martin back off i was the dd i pulled in and because i was feeling exceptionally outgoing waved and talked to some of my neighbors downstairs' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i dropped martin back off i was the dd i pulled in and because i was feeling exceptionally outgoing waved and talked to some of my neighbors downstairs What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i dropped martin back off i was the dd i pulled in and because i was feeling exceptionally outgoing waved and talked to some of my neighbors downstairs What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.91it/s]
--- Text 640 --- Text: 'i feel more faithful than ever' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel more faithful than ever What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel more faithful than ever What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.72it/s]
--- Text 641 --- Text: 'i am feeling relieved to feel myself again' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am feeling relieved to feel myself again What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling relieved to feel myself again What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: relieved Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.82it/s]
--- Text 642 --- Text: 'i sometimes feel a bit unwelcome' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i sometimes feel a bit unwelcome What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i sometimes feel a bit unwelcome What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.83it/s]
--- Text 643 --- Text: 'i feel complacent at the moment' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel complacent at the moment What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel complacent at the moment What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: complacency Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.26it/s] 30%|███ | 3/10 [00:00<00:00, 10.57it/s]
--- Text 644 --- Text: 'i feel most passionate about that arouse my emotions seem to be the things i need to learn something about my emotion tells me there is a need to grow in some direction' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel most passionate about that arouse my emotions seem to be the things i need to learn something about my emotion tells me there is a need to grow in some direction What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: love Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i feel most passionate about that arouse my emotions seem to be the things i need to learn something about my emotion tells me there is a need to grow in some direction What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.19it/s] 20%|██ | 2/10 [00:00<00:00, 8.35it/s]
--- Text 645 --- Text: 'i feel that it only makes you a person that i love who happened to do something that i don t find acceptable' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel that it only makes you a person that i love who happened to do something that i don t find acceptable What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i feel that it only makes you a person that i love who happened to do something that i don t find acceptable What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.83it/s]
--- Text 646 --- Text: 'i have not only not lost any yarn overs but am now done with my first lace project and feeling pretty pleased' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i have not only not lost any yarn overs but am now done with my first lace project and feeling pretty pleased What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have not only not lost any yarn overs but am now done with my first lace project and feeling pretty pleased What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.53it/s]
--- Text 647 --- Text: 'i want you to know that if i become prime minister in less than a year s time i will be proud to do so as a friend of israel a jew and most of all someone who feels so proud to be part of the community gathered here today' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i want you to know that if i become prime minister in less than a year s time i will be proud to do so as a friend of israel a jew and most of all someone who feels so proud to be part of the community gathered here today What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i want you to know that if i become prime minister in less than a year s time i will be proud to do so as a friend of israel a jew and most of all someone who feels so proud to be part of the community gathered here today What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.37it/s]
--- Text 648 --- Text: 'i feel somewhat safe to give hosting a try' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel somewhat safe to give hosting a try What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel somewhat safe to give hosting a try What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: safe Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.33it/s] 100%|██████████| 10/10 [00:00<00:00, 16.43it/s]
--- Text 649 --- Text: 'i don t follow too many people and i don t have too many followers however i have a feeling that the people that i am talking about may know who they are i m not trying to be rude i m just being real' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i don t follow too many people and i don t have too many followers however i have a feeling that the people that i am talking about may know who they are i m not trying to be rude i m just being real What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i don t follow too many people and i don t have too many followers however i have a feeling that the people that i am talking about may know who they are i m not trying to be rude i m just being real What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: The emotion of this text is: Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.10it/s]
--- Text 650 --- Text: 'i never feel lonely as long as people love and support my work' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i never feel lonely as long as people love and support my work What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i never feel lonely as long as people love and support my work What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.36it/s] 40%|████ | 4/10 [00:00<00:00, 11.85it/s]
--- Text 651 --- Text: 'i have so much going on in my life and am constantly running like crazy i can always steal a quiet moment to acknowledge this child and the overwhelming excitement and anticipation that i feel god is truly faithful and brings everything around' True Emotion: love --- Zero-Shot Prompting --- Prompt: i have so much going on in my life and am constantly running like crazy i can always steal a quiet moment to acknowledge this child and the overwhelming excitement and anticipation that i feel god is truly faithful and brings everything around What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i have so much going on in my life and am constantly running like crazy i can always steal a quiet moment to acknowledge this child and the overwhelming excitement and anticipation that i feel god is truly faithful and brings everything around What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.56it/s]
--- Text 652 --- Text: 'i suspect his reasoning may simply be to lull apple into feeling complacent' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i suspect his reasoning may simply be to lull apple into feeling complacent What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i suspect his reasoning may simply be to lull apple into feeling complacent What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.69it/s] 100%|██████████| 10/10 [00:00<00:00, 17.45it/s]
--- Text 653 --- Text: 'i feel so exhausted by a' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel so exhausted by a What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is exhaustion Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so exhausted by a What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: i feel so exhausted by a Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.26it/s] 40%|████ | 4/10 [00:00<00:00, 11.94it/s]
--- Text 654 --- Text: 'i prepare i feel thankful that these events touch upon so many different concerns in my poetry from language issues to pacific aesthetics from the avant garde to eco poetry' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i prepare i feel thankful that these events touch upon so many different concerns in my poetry from language issues to pacific aesthetics from the avant garde to eco poetry What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i prepare i feel thankful that these events touch upon so many different concerns in my poetry from language issues to pacific aesthetics from the avant garde to eco poetry What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 10.54it/s]
--- Text 655 --- Text: 'i met my present boyfriend on a boat trip to england we had said that we would call each other when we got back to sweden we were not going to the same town in england as soon as i walked in he called from england as he could not wait till he came home' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i met my present boyfriend on a boat trip to england we had said that we would call each other when we got back to sweden we were not going to the same town in england as soon as i walked in he called from england as he could not wait till he came home What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i met my present boyfriend on a boat trip to england we had said that we would call each other when we got back to sweden we were not going to the same town in england as soon as i walked in he called from england as he could not wait till he came home What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.53it/s] 100%|██████████| 10/10 [00:00<00:00, 17.06it/s]
--- Text 656 --- Text: 'i feel inspired so many thing i want to write down' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel inspired so many thing i want to write down What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel inspired so many thing i want to write down What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel inspired so many things I want Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.54it/s]
--- Text 657 --- Text: 'im very hurt and i feel unimportant' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im very hurt and i feel unimportant What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im very hurt and i feel unimportant What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.37it/s]
--- Text 658 --- Text: 'i feel like uninstalling skype deactivateing all of my facebook amp hatena accounts since im becoming a hateful person amp i dont want to get any worse than i am right now' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel like uninstalling skype deactivateing all of my facebook amp hatena accounts since im becoming a hateful person amp i dont want to get any worse than i am right now What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like uninstalling skype deactivateing all of my facebook amp hatena accounts since im becoming a hateful person amp i dont want to get any worse than i am right now What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.59it/s]
--- Text 659 --- Text: 'i began to feel shaky and nauseous and yearned for my connection to cairns to make up for some of the deprivation' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i began to feel shaky and nauseous and yearned for my connection to cairns to make up for some of the deprivation What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i began to feel shaky and nauseous and yearned for my connection to cairns to make up for some of the deprivation What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Nausea Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.56it/s]
--- Text 660 --- Text: 'i was feeling adventurous though so i went with some asian flavors of ginger and sesame oil for my salad' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i was feeling adventurous though so i went with some asian flavors of ginger and sesame oil for my salad What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was feeling adventurous though so i went with some asian flavors of ginger and sesame oil for my salad What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Ginger and sesame oil are both Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.77it/s] 100%|██████████| 10/10 [00:00<00:00, 17.19it/s]
--- Text 661 --- Text: 'i was playing a sport in an advanced pe class and many of the people were not advanced' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i was playing a sport in an advanced pe class and many of the people were not advanced What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was playing a sport in an advanced pe class and many of the people were not advanced What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I was playing a sport in an advanced Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.57it/s]
--- Text 662 --- Text: 'i cause extreme worry and distress ground to remember fondly you forever mary prepares to feel unfortunate time eventuallythe intense emotion have sexual lovein condescend to come she by hand puts out strength wu mouth dont let oneself cry out' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i cause extreme worry and distress ground to remember fondly you forever mary prepares to feel unfortunate time eventuallythe intense emotion have sexual lovein condescend to come she by hand puts out strength wu mouth dont let oneself cry out What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i cause extreme worry and distress ground to remember fondly you forever mary prepares to feel unfortunate time eventuallythe intense emotion have sexual lovein condescend to come she by hand puts out strength wu mouth dont let oneself cry out What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.82it/s] 40%|████ | 4/10 [00:00<00:00, 12.04it/s]
--- Text 663 --- Text: 'i feel so greedy of holidays and forgetting my responsibilities' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel so greedy of holidays and forgetting my responsibilities What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so greedy of holidays and forgetting my responsibilities What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: greed Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.70it/s]
--- Text 664 --- Text: 'i mean i feel like a broke record sometimes' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i mean i feel like a broke record sometimes What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i mean i feel like a broke record sometimes What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.45it/s] 40%|████ | 4/10 [00:00<00:00, 11.85it/s]
--- Text 665 --- Text: 'i am feeling rather heartless because i recently heard the words unconditional love and could not find it in myself' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i am feeling rather heartless because i recently heard the words unconditional love and could not find it in myself What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i am feeling rather heartless because i recently heard the words unconditional love and could not find it in myself What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: heartless Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.59it/s]
--- Text 666 --- Text: 'i feel dissatisfied and more accustomed to healing' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel dissatisfied and more accustomed to healing What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel dissatisfied and more accustomed to healing What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.55it/s]
--- Text 667 --- Text: 'im feeling doubtful about all of the patterns and colors working together but we cant be sure until everything comes together' True Emotion: fear --- Zero-Shot Prompting --- Prompt: im feeling doubtful about all of the patterns and colors working together but we cant be sure until everything comes together What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling doubtful about all of the patterns and colors working together but we cant be sure until everything comes together What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Doubt Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.89it/s]
--- Text 668 --- Text: 'i want to get back in the habit of blogging about all the cool fun things im up to but am also trying to get out of this rut of only writing about feeling shitty' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i want to get back in the habit of blogging about all the cool fun things im up to but am also trying to get out of this rut of only writing about feeling shitty What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i want to get back in the habit of blogging about all the cool fun things im up to but am also trying to get out of this rut of only writing about feeling shitty What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.06it/s] 40%|████ | 4/10 [00:00<00:00, 11.57it/s]
--- Text 669 --- Text: 'i am still healing from having my heart broken still healing from broken dreams still doubting myself still feeling confused' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i am still healing from having my heart broken still healing from broken dreams still doubting myself still feeling confused What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i am still healing from having my heart broken still healing from broken dreams still doubting myself still feeling confused What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.79it/s] 50%|█████ | 5/10 [00:00<00:00, 12.83it/s]
--- Text 670 --- Text: 'i gents been feeling lousy over the last few weeks which ended up with a trip to the hospital last saturday which put a damper on the wedding anniversary' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i gents been feeling lousy over the last few weeks which ended up with a trip to the hospital last saturday which put a damper on the wedding anniversary What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i gents been feeling lousy over the last few weeks which ended up with a trip to the hospital last saturday which put a damper on the wedding anniversary What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.27it/s] 30%|███ | 3/10 [00:00<00:00, 10.68it/s]
--- Text 671 --- Text: 'i read about him and learn about him in his interviews the more i feel like i could never deserve someone so kind and compassionate' True Emotion: love --- Zero-Shot Prompting --- Prompt: i read about him and learn about him in his interviews the more i feel like i could never deserve someone so kind and compassionate What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i read about him and learn about him in his interviews the more i feel like i could never deserve someone so kind and compassionate What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.72it/s]
--- Text 672 --- Text: 'i feel thats just strange on wotcs behalf' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i feel thats just strange on wotcs behalf What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel thats just strange on wotcs behalf What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.49it/s] 30%|███ | 3/10 [00:00<00:00, 11.12it/s]
--- Text 673 --- Text: 'i take a walk in the park feeling joyful' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i take a walk in the park feeling joyful What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i take a walk in the park feeling joyful What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.40it/s]
--- Text 674 --- Text: 'i feel calm silent and protected by the definiteness of this existence' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel calm silent and protected by the definiteness of this existence What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel calm silent and protected by the definiteness of this existence What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: calm Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.45it/s] 40%|████ | 4/10 [00:00<00:00, 12.68it/s]
--- Text 675 --- Text: 'i want to feel assured that my life will be good and i know it will be when i trust the lord' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i want to feel assured that my life will be good and i know it will be when i trust the lord What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i want to feel assured that my life will be good and i know it will be when i trust the lord What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Faith Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.00it/s] 30%|███ | 3/10 [00:00<00:00, 11.38it/s]
--- Text 676 --- Text: 'i feel safe with berry' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel safe with berry What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: safety Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel safe with berry What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 90%|█████████ | 9/10 [00:00<00:00, 15.76it/s]
--- Text 677 --- Text: 'im feeling envious already' True Emotion: anger --- Zero-Shot Prompting --- Prompt: im feeling envious already What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling envious already What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I am feeling envious already. Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.33it/s]
--- Text 678 --- Text: 'i suck up is the boring dull town and the feeling being missed by my family and bf' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i suck up is the boring dull town and the feeling being missed by my family and bf What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i suck up is the boring dull town and the feeling being missed by my family and bf What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.32it/s] 100%|██████████| 10/10 [00:00<00:00, 16.78it/s]
--- Text 679 --- Text: 'i feel like i have all these cute things but i dont feel comfortable in them and dont know how to put them together' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like i have all these cute things but i dont feel comfortable in them and dont know how to put them together What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like i have all these cute things but i dont feel comfortable in them and dont know how to put them together What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel like I have all these c Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.73it/s]
--- Text 680 --- Text: 'i feel like an emotional cutter' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like an emotional cutter What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like an emotional cutter What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.83it/s]
--- Text 681 --- Text: 'i wake up in morning and when i go to sleep at evening i feel that seed voice in my heart that is screaming out from my empty stitched heart' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i wake up in morning and when i go to sleep at evening i feel that seed voice in my heart that is screaming out from my empty stitched heart What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i wake up in morning and when i go to sleep at evening i feel that seed voice in my heart that is screaming out from my empty stitched heart What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.27it/s] 30%|███ | 3/10 [00:00<00:00, 10.67it/s]
--- Text 682 --- Text: 'i received the blanket i was absolutely amazed on how fluffy it is and extremely soft i really didnt think it was going to feel that amazing' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i received the blanket i was absolutely amazed on how fluffy it is and extremely soft i really didnt think it was going to feel that amazing What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Sur Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i received the blanket i was absolutely amazed on how fluffy it is and extremely soft i really didnt think it was going to feel that amazing What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Surprise Predicted Emotion: surprise --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.73it/s]
--- Text 683 --- Text: 'i feel that sometimes im not talented enough' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel that sometimes im not talented enough What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel that sometimes im not talented enough What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.45it/s]
--- Text 684 --- Text: 'i feel it would be foolish and perhaps a little disrespectful to consider doing the long hilly race' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel it would be foolish and perhaps a little disrespectful to consider doing the long hilly race What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel it would be foolish and perhaps a little disrespectful to consider doing the long hilly race What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.65it/s] 100%|██████████| 10/10 [00:00<00:00, 16.83it/s]
--- Text 685 --- Text: 'i mention my oldest child before my youngest will her feelings be hurt' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i mention my oldest child before my youngest will her feelings be hurt What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i mention my oldest child before my youngest will her feelings be hurt What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: My oldest child before my youngest will Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.29it/s]
--- Text 686 --- Text: 'i woke up today feeling kind of strange' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i woke up today feeling kind of strange What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i woke up today feeling kind of strange What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I woke up today feeling kind of Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.75it/s] 20%|██ | 2/10 [00:00<00:00, 9.53it/s]
--- Text 687 --- Text: 'im sick of feeling unimportant like nobody needs me' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im sick of feeling unimportant like nobody needs me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: im sick of feeling unimportant like nobody needs me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.47it/s] 50%|█████ | 5/10 [00:00<00:00, 13.55it/s]
--- Text 688 --- Text: 'i am feeling quite distressed and dejected over my battle with insomnia' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i am feeling quite distressed and dejected over my battle with insomnia What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion in this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i am feeling quite distressed and dejected over my battle with insomnia What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.40it/s] 100%|██████████| 10/10 [00:00<00:00, 16.94it/s]
--- Text 689 --- Text: 'i feel hated in cempaka' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel hated in cempaka What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The text is: "I feel hated Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel hated in cempaka What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel hated in Cempaka Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.94it/s]
--- Text 690 --- Text: 'i do feel numb but only because i have so many fucking feels that i ve shorted out from feeling them' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i do feel numb but only because i have so many fucking feels that i ve shorted out from feeling them What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i do feel numb but only because i have so many fucking feels that i ve shorted out from feeling them What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Numbness Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.39it/s]
--- Text 691 --- Text: 'i often use disney to cheer me up when im feeling low and these past couple days have been no exception' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i often use disney to cheer me up when im feeling low and these past couple days have been no exception What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i often use disney to cheer me up when im feeling low and these past couple days have been no exception What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.48it/s] 40%|████ | 4/10 [00:00<00:00, 12.28it/s]
--- Text 692 --- Text: 'ive been feeling a little defeated maybe even over looked' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: ive been feeling a little defeated maybe even over looked What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: ive been feeling a little defeated maybe even over looked What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.23it/s]
--- Text 693 --- Text: 'i feel shy because of what i am wearing' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel shy because of what i am wearing What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel shy because of what i am wearing What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: shyness Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 0%| | 0/10 [00:00<?, ?it/s]
--- Text 694 --- Text: 'i can say is that as long as you enjoy the story it entertains you and makes you feel emotional whether it be sad happy angry disgusted or just plain horny then who really gives a damn' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i can say is that as long as you enjoy the story it entertains you and makes you feel emotional whether it be sad happy angry disgusted or just plain horny then who really gives a damn What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i can say is that as long as you enjoy the story it entertains you and makes you feel emotional whether it be sad happy angry disgusted or just plain horny then who really gives a damn What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.83it/s] 20%|██ | 2/10 [00:00<00:00, 8.60it/s]
--- Text 695 --- Text: 'i wept while jackson slept feeling overwhelmed by the feeling that i don t want to die' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i wept while jackson slept feeling overwhelmed by the feeling that i don t want to die What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i wept while jackson slept feeling overwhelmed by the feeling that i don t want to die What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.17it/s] 30%|███ | 3/10 [00:00<00:00, 10.20it/s]
--- Text 696 --- Text: 'i feel confident to be me again in personal life and right when my work life was going well with my boss slowly understanding why i continually ask for and demand we address the tough issues that cause problems with our various departments' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel confident to be me again in personal life and right when my work life was going well with my boss slowly understanding why i continually ask for and demand we address the tough issues that cause problems with our various departments What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel confident to be me again in personal life and right when my work life was going well with my boss slowly understanding why i continually ask for and demand we address the tough issues that cause problems with our various departments What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 60%|██████ | 6/10 [00:00<00:00, 13.68it/s]
--- Text 697 --- Text: 'i dont know whether his presence is the reason why i feel more homesick for the uk than the us or just by being here makes me miss my former home' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i dont know whether his presence is the reason why i feel more homesick for the uk than the us or just by being here makes me miss my former home What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i dont know whether his presence is the reason why i feel more homesick for the uk than the us or just by being here makes me miss my former home What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Homesickness Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.89it/s]
--- Text 698 --- Text: 'i mentioned in my last blog that i have started to get the feeling that i have been pressured into studying things i do not like which has also made me into a person i might not fully be' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i mentioned in my last blog that i have started to get the feeling that i have been pressured into studying things i do not like which has also made me into a person i might not fully be What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i mentioned in my last blog that i have started to get the feeling that i have been pressured into studying things i do not like which has also made me into a person i might not fully be What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.56it/s]
--- Text 699 --- Text: 'i only do unwillingly and always leaves me feeling grouchy and unsettled' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i only do unwillingly and always leaves me feeling grouchy and unsettled What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i only do unwillingly and always leaves me feeling grouchy and unsettled What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: grouchy Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.27it/s] 40%|████ | 4/10 [00:00<00:00, 11.90it/s]
--- Text 700 --- Text: 'i have to give it to men as women we complain a lot about the heals we have to wear but at least we can wear a dress and feel cool in the summer' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i have to give it to men as women we complain a lot about the heals we have to wear but at least we can wear a dress and feel cool in the summer What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i have to give it to men as women we complain a lot about the heals we have to wear but at least we can wear a dress and feel cool in the summer What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.42it/s]
--- Text 701 --- Text: 'i feel like i should be listening to chinesepod and working on my mandarin but what i really want to listen to is the savage love podcast or car talk' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel like i should be listening to chinesepod and working on my mandarin but what i really want to listen to is the savage love podcast or car talk What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like i should be listening to chinesepod and working on my mandarin but what i really want to listen to is the savage love podcast or car talk What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.51it/s] 40%|████ | 4/10 [00:00<00:00, 11.81it/s]
--- Text 702 --- Text: 'i feel assured that the guns are locked away in the gun safe making it impossible for any of the children to access them' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel assured that the guns are locked away in the gun safe making it impossible for any of the children to access them What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel assured that the guns are locked away in the gun safe making it impossible for any of the children to access them What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Assurance Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.58it/s]
--- Text 703 --- Text: 'i also feel this conversation could dovetail quite easily into another about images and objects that are ugly to serve the purpose of being ironic' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i also feel this conversation could dovetail quite easily into another about images and objects that are ugly to serve the purpose of being ironic What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i also feel this conversation could dovetail quite easily into another about images and objects that are ugly to serve the purpose of being ironic What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I also feel this conversation could dovet Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.88it/s]
--- Text 704 --- Text: 'i dont want to make this blog something that i just whine on all the time but i feel like ive been beaten with a two by four or something' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i dont want to make this blog something that i just whine on all the time but i feel like ive been beaten with a two by four or something What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i dont want to make this blog something that i just whine on all the time but i feel like ive been beaten with a two by four or something What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.69it/s]
--- Text 705 --- Text: 'i feel bad for them for wasting their time and effort for nothing' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel bad for them for wasting their time and effort for nothing What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel bad for them for wasting their time and effort for nothing What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 60%|██████ | 6/10 [00:00<00:00, 14.31it/s]
--- Text 706 --- Text: 'i feel overwhelmed how about you' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i feel overwhelmed how about you What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel overwhelmed how about you What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Overwhelmed Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.43it/s]
--- Text 707 --- Text: 'i kept trying to make her feel better' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i kept trying to make her feel better What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i kept trying to make her feel better What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.40it/s] 40%|████ | 4/10 [00:00<00:00, 11.56it/s]
--- Text 708 --- Text: 'i get making employees feel valued i really do but in this economy where another k jobs were dumped last week alone i suspect the majority of people are thinking like rudy and i thank god we still have a job' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i get making employees feel valued i really do but in this economy where another k jobs were dumped last week alone i suspect the majority of people are thinking like rudy and i thank god we still have a job What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i get making employees feel valued i really do but in this economy where another k jobs were dumped last week alone i suspect the majority of people are thinking like rudy and i thank god we still have a job What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fear Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.22it/s]
--- Text 709 --- Text: 'i feel lucky that theyve chosen to share their lives with me' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel lucky that theyve chosen to share their lives with me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel lucky that theyve chosen to share their lives with me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 60%|██████ | 6/10 [00:00<00:00, 14.18it/s]
--- Text 710 --- Text: 'i feel embarrassed enough' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel embarrassed enough What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel embarrassed enough What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: embarrassment Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.29it/s] 50%|█████ | 5/10 [00:00<00:00, 12.95it/s]
--- Text 711 --- Text: 'im not feeling sorry for myself though because i just think of those poor people whom have lost their lives or everything they have due to sandy' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im not feeling sorry for myself though because i just think of those poor people whom have lost their lives or everything they have due to sandy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: im not feeling sorry for myself though because i just think of those poor people whom have lost their lives or everything they have due to sandy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.28it/s]
--- Text 712 --- Text: 'told by some people the class leader only choose his friends not true' True Emotion: anger --- Zero-Shot Prompting --- Prompt: told by some people the class leader only choose his friends not true What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: told by some people the class leader only choose his friends not true What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: The class leader only chooses his friends. Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.79it/s] 70%|███████ | 7/10 [00:00<00:00, 14.25it/s]
--- Text 713 --- Text: 'i stop feeling guilty' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i stop feeling guilty What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i stop feeling guilty What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I stop feeling guilty. Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.26it/s] 40%|████ | 4/10 [00:00<00:00, 11.84it/s]
--- Text 714 --- Text: 'i know some people are more fond of the treat of going and getting a pedicure because you can just sit there and enjoy the wonderful feeling of someone else massaging your tender tootsies all the while flipping the pages of a book or magazine' True Emotion: love --- Zero-Shot Prompting --- Prompt: i know some people are more fond of the treat of going and getting a pedicure because you can just sit there and enjoy the wonderful feeling of someone else massaging your tender tootsies all the while flipping the pages of a book or magazine What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is relaxation Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i know some people are more fond of the treat of going and getting a pedicure because you can just sit there and enjoy the wonderful feeling of someone else massaging your tender tootsies all the while flipping the pages of a book or magazine What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.03it/s]
--- Text 715 --- Text: 'i first read this book during college and it has helped me cope with the feeling of helplessness and fear of the uncertain future' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i first read this book during college and it has helped me cope with the feeling of helplessness and fear of the uncertain future What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i first read this book during college and it has helped me cope with the feeling of helplessness and fear of the uncertain future What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fear Predicted Emotion: fear --------------------
100%|██████████| 10/10 [00:00<00:00, 17.26it/s] 40%|████ | 4/10 [00:00<00:00, 12.02it/s]
--- Text 716 --- Text: 'i get to be creative if i feel like it or just sit and chat to customers the people are all lovely even kermit helps out see' True Emotion: love --- Zero-Shot Prompting --- Prompt: i get to be creative if i feel like it or just sit and chat to customers the people are all lovely even kermit helps out see What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i get to be creative if i feel like it or just sit and chat to customers the people are all lovely even kermit helps out see What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.76it/s]
--- Text 717 --- Text: 'i get the feeling donald is smart enough to educate himself through his own densely focused meanderings and their inherent shortcomings' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i get the feeling donald is smart enough to educate himself through his own densely focused meanderings and their inherent shortcomings What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i get the feeling donald is smart enough to educate himself through his own densely focused meanderings and their inherent shortcomings What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I get the feeling that Donald is smart Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.71it/s]
--- Text 718 --- Text: 'i was feeling frantic' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i was feeling frantic What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was feeling frantic What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: frantic Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.49it/s] 30%|███ | 3/10 [00:00<00:00, 11.40it/s]
--- Text 719 --- Text: 'i feel that it is extremely dangerous for her to be wandering out to sea' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel that it is extremely dangerous for her to be wandering out to sea What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i feel that it is extremely dangerous for her to be wandering out to sea What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.72it/s]
--- Text 720 --- Text: 'i am so grateful to have been filled up by general conference and to feel the joyful power of the spirit after such a wonderful weekend' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am so grateful to have been filled up by general conference and to feel the joyful power of the spirit after such a wonderful weekend What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am so grateful to have been filled up by general conference and to feel the joyful power of the spirit after such a wonderful weekend What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 11.55it/s]
--- Text 721 --- Text: 'i think your viewers tonight will enjoy the show coming from malm they will like some things be less fond of other things but hopefully they will feel entertained and smitten and feel the urge to cast a vote regardless if your country is voting tonight or not' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i think your viewers tonight will enjoy the show coming from malm they will like some things be less fond of other things but hopefully they will feel entertained and smitten and feel the urge to cast a vote regardless if your country is voting tonight or not What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i think your viewers tonight will enjoy the show coming from malm they will like some things be less fond of other things but hopefully they will feel entertained and smitten and feel the urge to cast a vote regardless if your country is voting tonight or not What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.72it/s]
--- Text 722 --- Text: 'i ever want to feel that vulnerable' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i ever want to feel that vulnerable What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i ever want to feel that vulnerable What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.91it/s] 50%|█████ | 5/10 [00:00<00:00, 12.53it/s]
--- Text 723 --- Text: 'i bought this doraemon backpack from a charity store i had every intention of putting it in my etsy store but i feel like its too cute to sell' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i bought this doraemon backpack from a charity store i had every intention of putting it in my etsy store but i feel like its too cute to sell What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Love Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i bought this doraemon backpack from a charity store i had every intention of putting it in my etsy store but i feel like its too cute to sell What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Cuteness Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.69it/s]
--- Text 724 --- Text: 'im looking upon the next year as an adventure which very likely will make me curse mathematics and other subjects to hell but eventually make me feel relieved' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im looking upon the next year as an adventure which very likely will make me curse mathematics and other subjects to hell but eventually make me feel relieved What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im looking upon the next year as an adventure which very likely will make me curse mathematics and other subjects to hell but eventually make me feel relieved What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.84it/s]
--- Text 725 --- Text: 'i can put on it without words since i just cant type on that it was so lovely this morning yes im feeling sarcastic today' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i can put on it without words since i just cant type on that it was so lovely this morning yes im feeling sarcastic today What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i can put on it without words since i just cant type on that it was so lovely this morning yes im feeling sarcastic today What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sarcasm Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.70it/s] 50%|█████ | 5/10 [00:00<00:00, 13.29it/s]
--- Text 726 --- Text: 'i feel kind of unwelcome in many catholic communities but i hope that isnt the case here' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel kind of unwelcome in many catholic communities but i hope that isnt the case here What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: hope Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel kind of unwelcome in many catholic communities but i hope that isnt the case here What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.29it/s] 40%|████ | 4/10 [00:00<00:00, 11.73it/s]
--- Text 727 --- Text: 'i lift different now because it hurt so bad the day it happened that i can t get it out of my mind and i feel myself being a bit timid' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i lift different now because it hurt so bad the day it happened that i can t get it out of my mind and i feel myself being a bit timid What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i lift different now because it hurt so bad the day it happened that i can t get it out of my mind and i feel myself being a bit timid What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.13it/s] 50%|█████ | 5/10 [00:00<00:00, 12.47it/s]
--- Text 728 --- Text: 'i was feeling rather homesick today so i decided to make a list of typical city sight that might come in use should you decide to visit switzerlands largest city' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i was feeling rather homesick today so i decided to make a list of typical city sight that might come in use should you decide to visit switzerlands largest city What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was feeling rather homesick today so i decided to make a list of typical city sight that might come in use should you decide to visit switzerlands largest city What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.57it/s]
--- Text 729 --- Text: 'im sure ill feel more playful soon but i just cant right now' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im sure ill feel more playful soon but i just cant right now What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im sure ill feel more playful soon but i just cant right now What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.44it/s]
--- Text 730 --- Text: 'i couldnt feel more blessed at this time' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i couldnt feel more blessed at this time What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i couldnt feel more blessed at this time What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.80it/s]
--- Text 731 --- Text: 'i feel like rich purple and gold are a match made in heaven and this reinforces that belief' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like rich purple and gold are a match made in heaven and this reinforces that belief What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like rich purple and gold are a match made in heaven and this reinforces that belief What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.80it/s]
--- Text 732 --- Text: 'i sit in the same hostel i did nearly two months ago this time wearing a jacket and feeling as if my toes might be a little numb from the cold' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i sit in the same hostel i did nearly two months ago this time wearing a jacket and feeling as if my toes might be a little numb from the cold What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i sit in the same hostel i did nearly two months ago this time wearing a jacket and feeling as if my toes might be a little numb from the cold What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.85it/s]
--- Text 733 --- Text: 'i feel lost without you' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel lost without you What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel lost without you What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.42it/s]
--- Text 734 --- Text: 'i feel smart when i figure things out myself' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel smart when i figure things out myself What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel smart when i figure things out myself What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.55it/s]
--- Text 735 --- Text: 'i now im graduating in two days but i feel so sad right now' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i now im graduating in two days but i feel so sad right now What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i now im graduating in two days but i feel so sad right now What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.69it/s]
--- Text 736 --- Text: 'i feel very naughty to step outside my species but you are compellingly different' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel very naughty to step outside my species but you are compellingly different What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel very naughty to step outside my species but you are compellingly different What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.13it/s] 40%|████ | 4/10 [00:00<00:00, 12.51it/s]
--- Text 737 --- Text: 'i want to feel less stressed' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i want to feel less stressed What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: stress Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i want to feel less stressed What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: stress Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.69it/s]
--- Text 738 --- Text: 'i still feel nervous' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i still feel nervous What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i still feel nervous What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Nervous Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.18it/s] 50%|█████ | 5/10 [00:00<00:00, 12.78it/s]
--- Text 739 --- Text: 'i am put in mind of an odd feeling of vicious cruel natural order here it seems no one is able to escape the town the cycles of predator and victim catching up with anyone trying to elevate themselves out of the mire' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i am put in mind of an odd feeling of vicious cruel natural order here it seems no one is able to escape the town the cycles of predator and victim catching up with anyone trying to elevate themselves out of the mire What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i am put in mind of an odd feeling of vicious cruel natural order here it seems no one is able to escape the town the cycles of predator and victim catching up with anyone trying to elevate themselves out of the mire What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.76it/s]
--- Text 740 --- Text: 'i feel more violent than ever right now' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel more violent than ever right now What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel more violent than ever right now What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.41it/s]
--- Text 741 --- Text: 'i feel ecstatic and privileged' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel ecstatic and privileged What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel ecstatic and privileged What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: ecstasy Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.98it/s] 40%|████ | 4/10 [00:00<00:00, 12.04it/s]
--- Text 742 --- Text: 'i feel he will be perfect for this event' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel he will be perfect for this event What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: love Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i feel he will be perfect for this event What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.94it/s] 40%|████ | 4/10 [00:00<00:00, 12.38it/s]
--- Text 743 --- Text: 'i came away from that expereince feeling like i had had an encounter with the divine' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i came away from that expereince feeling like i had had an encounter with the divine What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i came away from that expereince feeling like i had had an encounter with the divine What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 80%|████████ | 8/10 [00:00<00:00, 14.17it/s]
--- Text 744 --- Text: 'i feel slightly saddened to know that some of the kids have also resigned during my absence' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel slightly saddened to know that some of the kids have also resigned during my absence What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel slightly saddened to know that some of the kids have also resigned during my absence What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Slightly saddened Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.02it/s] 40%|████ | 4/10 [00:00<00:00, 11.90it/s]
--- Text 745 --- Text: 'i sit here in the snowy ohio countryside on christmas eve feeling like i m in a postcard i m thrilled to announce that i found it' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i sit here in the snowy ohio countryside on christmas eve feeling like i m in a postcard i m thrilled to announce that i found it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i sit here in the snowy ohio countryside on christmas eve feeling like i m in a postcard i m thrilled to announce that i found it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.60it/s]
--- Text 746 --- Text: 'im not feeling very hopeful about the coming summer' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im not feeling very hopeful about the coming summer What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im not feeling very hopeful about the coming summer What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.90it/s]
--- Text 747 --- Text: 'i feel a bit like a naughty kid who went and spent their last pence on a bag full of e numbers guilty' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel a bit like a naughty kid who went and spent their last pence on a bag full of e numbers guilty What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel a bit like a naughty kid who went and spent their last pence on a bag full of e numbers guilty What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Guilt Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.53it/s] 50%|█████ | 5/10 [00:00<00:00, 12.84it/s]
--- Text 748 --- Text: 'i tune out the rest of the world and focus on the rhythm of the needles and the softness of the yarn and for that time i feel my most peaceful' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i tune out the rest of the world and focus on the rhythm of the needles and the softness of the yarn and for that time i feel my most peaceful What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i tune out the rest of the world and focus on the rhythm of the needles and the softness of the yarn and for that time i feel my most peaceful What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Peaceful Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.76it/s] 100%|██████████| 10/10 [00:00<00:00, 16.42it/s]
--- Text 749 --- Text: 'i say i feel alone br style color line height' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i say i feel alone br style color line height What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i say i feel alone br style color line height What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I say I feel alone, br Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.07it/s] 50%|█████ | 5/10 [00:00<00:00, 12.43it/s]
--- Text 750 --- Text: 'i was feeling heartbroken and lonely i watched my second younger sibling get married leaving me the lone single adult in our family' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i was feeling heartbroken and lonely i watched my second younger sibling get married leaving me the lone single adult in our family What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i was feeling heartbroken and lonely i watched my second younger sibling get married leaving me the lone single adult in our family What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.70it/s]
--- Text 751 --- Text: 'i lost a few pounds but i also started to feel really awful' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i lost a few pounds but i also started to feel really awful What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i lost a few pounds but i also started to feel really awful What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.90it/s] 40%|████ | 4/10 [00:00<00:00, 12.50it/s]
--- Text 752 --- Text: 'i enjoy about his work is the genuine feel and the pleasant message he is trying to deliver with all this' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i enjoy about his work is the genuine feel and the pleasant message he is trying to deliver with all this What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i enjoy about his work is the genuine feel and the pleasant message he is trying to deliver with all this What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 60%|██████ | 6/10 [00:00<00:00, 14.25it/s]
--- Text 753 --- Text: 'i knew except they ve lost that girly feeling and gained a graceful wisdom' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i knew except they ve lost that girly feeling and gained a graceful wisdom What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i knew except they ve lost that girly feeling and gained a graceful wisdom What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Graceful wisdom Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.99it/s]
--- Text 754 --- Text: 'i am feeling a bit ungrateful and choose to correct that' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i am feeling a bit ungrateful and choose to correct that What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling a bit ungrateful and choose to correct that What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I am feeling a bit ungrateful Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.39it/s]
--- Text 755 --- Text: 'i notice how different this question is from why i am feeling so agitated' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i notice how different this question is from why i am feeling so agitated What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i notice how different this question is from why i am feeling so agitated What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
100%|██████████| 10/10 [00:00<00:00, 16.91it/s] 50%|█████ | 5/10 [00:00<00:00, 12.68it/s]
--- Text 756 --- Text: 'i feel like such a noob when the customers make really dull and stupid jokes that im supposed to find funny' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like such a noob when the customers make really dull and stupid jokes that im supposed to find funny What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like such a noob when the customers make really dull and stupid jokes that im supposed to find funny What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.18it/s] 30%|███ | 3/10 [00:00<00:00, 11.24it/s]
--- Text 757 --- Text: 'getting sent on a company expense trip to another state to work for a week at that plan' True Emotion: joy --- Zero-Shot Prompting --- Prompt: getting sent on a company expense trip to another state to work for a week at that plan What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: getting sent on a company expense trip to another state to work for a week at that plan What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.08it/s] 100%|██████████| 10/10 [00:00<00:00, 15.82it/s]
--- Text 758 --- Text: 'i feel insulted by how those heroes of cosplay goons said they don t care if you re if' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel insulted by how those heroes of cosplay goons said they don t care if you re if What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The text expresses anger. The author feels Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i feel insulted by how those heroes of cosplay goons said they don t care if you re if What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel insulted by how those Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.33it/s] 100%|██████████| 10/10 [00:00<00:00, 16.06it/s]
--- Text 759 --- Text: 'i eat a good breakfast i feel more energetic throughout the whole day and don t feel that o clock slump' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i eat a good breakfast i feel more energetic throughout the whole day and don t feel that o clock slump What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i eat a good breakfast i feel more energetic throughout the whole day and don t feel that o clock slump What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I eat a good breakfast, I feel Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.53it/s]
--- Text 760 --- Text: 'i feel very strongly about supporting charities that help children' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel very strongly about supporting charities that help children What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel very strongly about supporting charities that help children What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.65it/s]
--- Text 761 --- Text: 'i have ever seen in my life was laceys constant disapprovements of rikkis extreme happiness when she just wasnt feeling quite as carefree as he was' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i have ever seen in my life was laceys constant disapprovements of rikkis extreme happiness when she just wasnt feeling quite as carefree as he was What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have ever seen in my life was laceys constant disapprovements of rikkis extreme happiness when she just wasnt feeling quite as carefree as he was What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.14it/s] 30%|███ | 3/10 [00:00<00:00, 11.40it/s]
--- Text 762 --- Text: 'i started thinking about which spaces made me feel most creative and what characteristics they had' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i started thinking about which spaces made me feel most creative and what characteristics they had What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is curiosity. Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i started thinking about which spaces made me feel most creative and what characteristics they had What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 8.81it/s]
--- Text 763 --- Text: 'i usually ignore page invites that are irrelevant to me or facebook game invites because its impersonal and it feels insincere' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i usually ignore page invites that are irrelevant to me or facebook game invites because its impersonal and it feels insincere What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i usually ignore page invites that are irrelevant to me or facebook game invites because its impersonal and it feels insincere What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.58it/s]
--- Text 764 --- Text: 'i am feeling playful this morning' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am feeling playful this morning What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling playful this morning What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.36it/s]
--- Text 765 --- Text: 'i feel like im a pathetic little desperation' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like im a pathetic little desperation What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like im a pathetic little desperation What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.84it/s] 40%|████ | 4/10 [00:00<00:00, 12.33it/s]
--- Text 766 --- Text: 'i feel totally completely accepted and loved while my heavenly abba was pointing out sin in my life' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel totally completely accepted and loved while my heavenly abba was pointing out sin in my life What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i feel totally completely accepted and loved while my heavenly abba was pointing out sin in my life What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.00it/s]
--- Text 767 --- Text: 'i feel fond of him though because he feels like an amalgamation of many people i already know' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel fond of him though because he feels like an amalgamation of many people i already know What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel fond of him though because he feels like an amalgamation of many people i already know What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.87it/s]
--- Text 768 --- Text: 'i feel like most teams would have appeased jackson at this point but the eagles are terribly stubborn' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel like most teams would have appeased jackson at this point but the eagles are terribly stubborn What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like most teams would have appeased jackson at this point but the eagles are terribly stubborn What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.52it/s]
--- Text 769 --- Text: 'i feel like damaged goods no one will want me now' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like damaged goods no one will want me now What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like damaged goods no one will want me now What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.05it/s]
--- Text 770 --- Text: 'i think i love her enough now to feel pretty insulted and rawr about it' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i think i love her enough now to feel pretty insulted and rawr about it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i think i love her enough now to feel pretty insulted and rawr about it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Rawr! 😤 Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.06it/s]
--- Text 771 --- Text: 'i can t help feeling lucky little do i know' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i can t help feeling lucky little do i know What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i can t help feeling lucky little do i know What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Luck Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.40it/s] 40%|████ | 4/10 [00:00<00:00, 12.04it/s]
--- Text 772 --- Text: 'i also feel the need to say thank you to the boy who helped me realize the above for showing me an absolutely splendid and hot night' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i also feel the need to say thank you to the boy who helped me realize the above for showing me an absolutely splendid and hot night What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i also feel the need to say thank you to the boy who helped me realize the above for showing me an absolutely splendid and hot night What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.85it/s]
--- Text 773 --- Text: 'i can never tell him how i feel and it really sucks because i think he gets really bothered by that' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i can never tell him how i feel and it really sucks because i think he gets really bothered by that What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i can never tell him how i feel and it really sucks because i think he gets really bothered by that What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.76it/s] 40%|████ | 4/10 [00:00<00:00, 11.84it/s]
--- Text 774 --- Text: 'ive also had a nosy on the website and seeing as its coming up to that time of year and im feeling strangely festive for once ive picked my top five products from the a href http www' True Emotion: joy --- Zero-Shot Prompting --- Prompt: ive also had a nosy on the website and seeing as its coming up to that time of year and im feeling strangely festive for once ive picked my top five products from the a href http www What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Love Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: ive also had a nosy on the website and seeing as its coming up to that time of year and im feeling strangely festive for once ive picked my top five products from the a href http www What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 60%|██████ | 6/10 [00:00<00:00, 13.38it/s]
--- Text 775 --- Text: 'i suppose its only natural that id start to feel a little homesick for new england at this time of year' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i suppose its only natural that id start to feel a little homesick for new england at this time of year What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i suppose its only natural that id start to feel a little homesick for new england at this time of year What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Nostalgia Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.45it/s]
--- Text 776 --- Text: 'i really feel like we were successful in identifying some pretty scary early warning signs and sticking our foot in the door before it shut' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i really feel like we were successful in identifying some pretty scary early warning signs and sticking our foot in the door before it shut What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i really feel like we were successful in identifying some pretty scary early warning signs and sticking our foot in the door before it shut What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fear Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.52it/s]
--- Text 777 --- Text: 'i cant help but think if id just shut up if id just not made a big deal of what was essentially two adults meeting at the same table for a hot beverage then perhaps i wouldnt have spent the bulk of the weekend feeling like a stupid shit' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i cant help but think if id just shut up if id just not made a big deal of what was essentially two adults meeting at the same table for a hot beverage then perhaps i wouldnt have spent the bulk of the weekend feeling like a stupid shit What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i cant help but think if id just shut up if id just not made a big deal of what was essentially two adults meeting at the same table for a hot beverage then perhaps i wouldnt have spent the bulk of the weekend feeling like a stupid shit What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.33it/s] 40%|████ | 4/10 [00:00<00:00, 11.89it/s]
--- Text 778 --- Text: 'i have been feeling really stressed out due to homework and my studies that have increased rapidly over the last week' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i have been feeling really stressed out due to homework and my studies that have increased rapidly over the last week What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have been feeling really stressed out due to homework and my studies that have increased rapidly over the last week What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Stressed Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.94it/s]
--- Text 779 --- Text: 'im begging fate not to mess with the next cycle to let it look as pretty as this one so i can at least go in feeling reassured' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im begging fate not to mess with the next cycle to let it look as pretty as this one so i can at least go in feeling reassured What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im begging fate not to mess with the next cycle to let it look as pretty as this one so i can at least go in feeling reassured What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Begging Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.30it/s] 100%|██████████| 10/10 [00:00<00:00, 16.33it/s]
--- Text 780 --- Text: 'i input class size medium wp image height src http techfeel in wp content uploads google hindi input x' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i input class size medium wp image height src http techfeel in wp content uploads google hindi input x What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The text is: "I input class size Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i input class size medium wp image height src http techfeel in wp content uploads google hindi input x What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: "I input class size medium wp image Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.74it/s]
--- Text 781 --- Text: 'ive got to learn to be mindful of how i feel all the time not just if im suspicious of a feeling' True Emotion: fear --- Zero-Shot Prompting --- Prompt: ive got to learn to be mindful of how i feel all the time not just if im suspicious of a feeling What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: ive got to learn to be mindful of how i feel all the time not just if im suspicious of a feeling What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I've got to learn to be Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.88it/s]
--- Text 782 --- Text: 'i am feeling much more relaxed' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am feeling much more relaxed What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling much more relaxed What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: relaxation Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.28it/s]
--- Text 783 --- Text: 'i feel it is acceptable to make requests using this name' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel it is acceptable to make requests using this name What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel it is acceptable to make requests using this name What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel it is acceptable to make requests Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.34it/s]
--- Text 784 --- Text: 'i have a feeling there are a lot of pissed off people in sea org in hollywood where scientology has become the monster that devoured wa wonderfully sleazy bohemian area' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i have a feeling there are a lot of pissed off people in sea org in hollywood where scientology has become the monster that devoured wa wonderfully sleazy bohemian area What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have a feeling there are a lot of pissed off people in sea org in hollywood where scientology has become the monster that devoured wa wonderfully sleazy bohemian area What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.53it/s]
--- Text 785 --- Text: 'i feel pained by this' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel pained by this What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel pained by this What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.27it/s] 40%|████ | 4/10 [00:00<00:00, 12.02it/s]
--- Text 786 --- Text: 'i am reading about s sewing circles and i feel completely happy if you cant spit in the face of imperialism at least be a lesbian' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am reading about s sewing circles and i feel completely happy if you cant spit in the face of imperialism at least be a lesbian What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i am reading about s sewing circles and i feel completely happy if you cant spit in the face of imperialism at least be a lesbian What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.68it/s]
--- Text 787 --- Text: 'i am feeling pretty fearless' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am feeling pretty fearless What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling pretty fearless What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fearless. Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.31it/s]
--- Text 788 --- Text: 'i feel bouncy and twitchy all of a sudden' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel bouncy and twitchy all of a sudden What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel bouncy and twitchy all of a sudden What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.55it/s]
--- Text 789 --- Text: 'i feel like it s more of a mellow restive dream maker' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like it s more of a mellow restive dream maker What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like it s more of a mellow restive dream maker What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.22it/s]
--- Text 790 --- Text: 'i did not feel any passionate joy' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i did not feel any passionate joy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i did not feel any passionate joy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I did not feel any passionate joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.03it/s] 60%|██████ | 6/10 [00:00<00:00, 13.25it/s]
--- Text 791 --- Text: 'i have nostalgic feelings i have met wonderful people online and the online internet is for me like my second life' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i have nostalgic feelings i have met wonderful people online and the online internet is for me like my second life What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i have nostalgic feelings i have met wonderful people online and the online internet is for me like my second life What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Nostalgia Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.73it/s] 40%|████ | 4/10 [00:00<00:00, 12.50it/s]
--- Text 792 --- Text: 'i feel rejected for trying to find my path to a stronger relationship and bond with god' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel rejected for trying to find my path to a stronger relationship and bond with god What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel rejected for trying to find my path to a stronger relationship and bond with god What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.91it/s]
--- Text 793 --- Text: 'i dont know how to deal with this i feel like its becoming apart if who i am im afraid that im going to associate it with regular things so that i will never forget it' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i dont know how to deal with this i feel like its becoming apart if who i am im afraid that im going to associate it with regular things so that i will never forget it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i dont know how to deal with this i feel like its becoming apart if who i am im afraid that im going to associate it with regular things so that i will never forget it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fear Predicted Emotion: fear --------------------
100%|██████████| 10/10 [00:00<00:00, 16.75it/s] 50%|█████ | 5/10 [00:00<00:00, 12.80it/s]
--- Text 794 --- Text: 'i think it s to do with the fact that i know i don t have a lot of time to play catch up and also because my free time for the first time in what feels like forever is really my free time' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i think it s to do with the fact that i know i don t have a lot of time to play catch up and also because my free time for the first time in what feels like forever is really my free time What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i think it s to do with the fact that i know i don t have a lot of time to play catch up and also because my free time for the first time in what feels like forever is really my free time What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.57it/s]
--- Text 795 --- Text: 'i feel extremely privileged to live in a country where a vote is legitimate and matters' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel extremely privileged to live in a country where a vote is legitimate and matters What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel extremely privileged to live in a country where a vote is legitimate and matters What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.69it/s] 50%|█████ | 5/10 [00:00<00:00, 12.50it/s]
--- Text 796 --- Text: 'i feel a strange gratitude for the hated israeli occupation of sinai that lasted from to for actually recognizing the importance of sinais history' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i feel a strange gratitude for the hated israeli occupation of sinai that lasted from to for actually recognizing the importance of sinais history What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is gratitude Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel a strange gratitude for the hated israeli occupation of sinai that lasted from to for actually recognizing the importance of sinais history What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Gratitude Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.85it/s] 50%|█████ | 5/10 [00:00<00:00, 12.95it/s]
--- Text 797 --- Text: 'im much more peaceful and happy when the house is clean the food is good and my kids arent feeling needy' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im much more peaceful and happy when the house is clean the food is good and my kids arent feeling needy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is happiness. Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im much more peaceful and happy when the house is clean the food is good and my kids arent feeling needy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Happiness Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.37it/s] 30%|███ | 3/10 [00:00<00:00, 11.41it/s]
--- Text 798 --- Text: 'i felt that my birthday was my one day to feel special and i could do whatever i wanted' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i felt that my birthday was my one day to feel special and i could do whatever i wanted What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i felt that my birthday was my one day to feel special and i could do whatever i wanted What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.63it/s]
--- Text 799 --- Text: 'i feel depressed again' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel depressed again What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel depressed again What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.24it/s]
--- Text 800 --- Text: 'i got up saturday morning feeling like crud but determined not to let it get the best of me' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i got up saturday morning feeling like crud but determined not to let it get the best of me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i got up saturday morning feeling like crud but determined not to let it get the best of me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: determination Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.52it/s] 20%|██ | 2/10 [00:00<00:00, 8.77it/s]
--- Text 801 --- Text: 'i feel that he is so determined to steal private industries away from citizens of this nation that he has given no time to fighting the real enemies of theu' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel that he is so determined to steal private industries away from citizens of this nation that he has given no time to fighting the real enemies of theu What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i feel that he is so determined to steal private industries away from citizens of this nation that he has given no time to fighting the real enemies of theu What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 90%|█████████ | 9/10 [00:00<00:00, 14.14it/s]
--- Text 802 --- Text: 'i would say no not yet and i would feel superior and in fact self righteous even if i would not admit it back then because i remember looking at the point so i can see that the point did come up but i could did not face it to protect my ego' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i would say no not yet and i would feel superior and in fact self righteous even if i would not admit it back then because i remember looking at the point so i can see that the point did come up but i could did not face it to protect my ego What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i would say no not yet and i would feel superior and in fact self righteous even if i would not admit it back then because i remember looking at the point so i can see that the point did come up but i could did not face it to protect my ego What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Self-righteousness Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.55it/s]
--- Text 803 --- Text: 'i feel very tender for anyone who is upset by the bee movie sort of like how you feel about old aunts who dont realize how prickly their whiskers are getting slightly repulsed but very sad for their decline' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel very tender for anyone who is upset by the bee movie sort of like how you feel about old aunts who dont realize how prickly their whiskers are getting slightly repulsed but very sad for their decline What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel very tender for anyone who is upset by the bee movie sort of like how you feel about old aunts who dont realize how prickly their whiskers are getting slightly repulsed but very sad for their decline What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.57it/s]
--- Text 804 --- Text: 'i sat up to embrace them and realised that two hours spent shaking my thang in an eighties bar celebrating the fact i am one year closer to death had left my ageing body feeling punished and my normally pink feet blackened' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i sat up to embrace them and realised that two hours spent shaking my thang in an eighties bar celebrating the fact i am one year closer to death had left my ageing body feeling punished and my normally pink feet blackened What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i sat up to embrace them and realised that two hours spent shaking my thang in an eighties bar celebrating the fact i am one year closer to death had left my ageing body feeling punished and my normally pink feet blackened What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.74it/s] 50%|█████ | 5/10 [00:00<00:00, 13.35it/s]
--- Text 805 --- Text: 'i feel so humiliated by my own self' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel so humiliated by my own self What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is likely sad Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so humiliated by my own self What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: humiliation Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.29it/s] 100%|██████████| 10/10 [00:00<00:00, 17.27it/s]
--- Text 806 --- Text: 'i feel it is a worthwhile item to me or within my company s mission' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel it is a worthwhile item to me or within my company s mission What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel it is a worthwhile item to me or within my company s mission What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel it is a worthwhile item Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.26it/s] 20%|██ | 2/10 [00:00<00:00, 8.80it/s]
--- Text 807 --- Text: 'i feel the earth move tribute to carole king karaoke mix details rel nofollow target blank see more details compare prices img src http www' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel the earth move tribute to carole king karaoke mix details rel nofollow target blank see more details compare prices img src http www What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: love Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i feel the earth move tribute to carole king karaoke mix details rel nofollow target blank see more details compare prices img src http www What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.56it/s]
--- Text 808 --- Text: 'im the only one with all the feelings and emotions and thats just pathetic of me to do so' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im the only one with all the feelings and emotions and thats just pathetic of me to do so What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im the only one with all the feelings and emotions and thats just pathetic of me to do so What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.56it/s] 30%|███ | 3/10 [00:00<00:00, 10.56it/s]
--- Text 809 --- Text: 'i can t say for certain why but it actually makes me feel amused and you can be sure it s not just me because other people from our offices told me they have the same a href http news' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i can t say for certain why but it actually makes me feel amused and you can be sure it s not just me because other people from our offices told me they have the same a href http news What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is amusement Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i can t say for certain why but it actually makes me feel amused and you can be sure it s not just me because other people from our offices told me they have the same a href http news What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: amusement. Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.98it/s] 50%|█████ | 5/10 [00:00<00:00, 13.13it/s]
--- Text 810 --- Text: 'i feel defeated but its okay hahaha my mid term holiday was good' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel defeated but its okay hahaha my mid term holiday was good What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is okay. Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel defeated but its okay hahaha my mid term holiday was good What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.12it/s] 20%|██ | 2/10 [00:00<00:00, 8.80it/s]
--- Text 811 --- Text: 'i decided to lay down in my bed but then i started to feel really violent like i wanted to punch and kick things except i didnt wnat to hurt anything' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i decided to lay down in my bed but then i started to feel really violent like i wanted to punch and kick things except i didnt wnat to hurt anything What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i decided to lay down in my bed but then i started to feel really violent like i wanted to punch and kick things except i didnt wnat to hurt anything What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 8.51it/s]
--- Text 812 --- Text: 'i want to say i feel numb but if i was numb i wouldnt have this pain and i probably wouldnt be able to cry so much' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i want to say i feel numb but if i was numb i wouldnt have this pain and i probably wouldnt be able to cry so much What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i want to say i feel numb but if i was numb i wouldnt have this pain and i probably wouldnt be able to cry so much What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.21it/s] 40%|████ | 4/10 [00:00<00:00, 10.78it/s]
--- Text 813 --- Text: 'i go again sometime in the future id probably just stick with the african tram which comes with entry fee maybe id spring for the asian tram and if i was feeling particularly brave i might even try the hot air balloon which i thought was reasonable priced at' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i go again sometime in the future id probably just stick with the african tram which comes with entry fee maybe id spring for the asian tram and if i was feeling particularly brave i might even try the hot air balloon which i thought was reasonable priced at What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is likely joy Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i go again sometime in the future id probably just stick with the african tram which comes with entry fee maybe id spring for the asian tram and if i was feeling particularly brave i might even try the hot air balloon which i thought was reasonable priced at What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.73it/s]
--- Text 814 --- Text: 'i always feel very shocked by that me threatening' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i always feel very shocked by that me threatening What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i always feel very shocked by that me threatening What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Surprise Predicted Emotion: surprise --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.81it/s]
--- Text 815 --- Text: 'i was supposed to be alright with not even feeling comfortable in my own home not being able to cook meals without a year old helping me ok with the mounting pile of water and utility bills' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i was supposed to be alright with not even feeling comfortable in my own home not being able to cook meals without a year old helping me ok with the mounting pile of water and utility bills What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was supposed to be alright with not even feeling comfortable in my own home not being able to cook meals without a year old helping me ok with the mounting pile of water and utility bills What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.29it/s] 50%|█████ | 5/10 [00:00<00:00, 12.99it/s]
--- Text 816 --- Text: 'i am not proud to be british i am not glad to be young and i most certainly do not feel blessed by opportunity' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am not proud to be british i am not glad to be young and i most certainly do not feel blessed by opportunity What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am not proud to be british i am not glad to be young and i most certainly do not feel blessed by opportunity What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.50it/s] 30%|███ | 3/10 [00:00<00:00, 11.11it/s]
--- Text 817 --- Text: 'whenever i put myself in others shoes and try to make the person happy' True Emotion: anger --- Zero-Shot Prompting --- Prompt: whenever i put myself in others shoes and try to make the person happy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: whenever i put myself in others shoes and try to make the person happy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.94it/s]
--- Text 818 --- Text: 'i feel absolutely devastated that gaia is being pushed to her limit in spite of the great strides we seem to be making with all the media attention lately' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel absolutely devastated that gaia is being pushed to her limit in spite of the great strides we seem to be making with all the media attention lately What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel absolutely devastated that gaia is being pushed to her limit in spite of the great strides we seem to be making with all the media attention lately What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.55it/s]
--- Text 819 --- Text: 'i feel around someone the more idiotic i feel hence the unintelligible blabbering' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel around someone the more idiotic i feel hence the unintelligible blabbering What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel around someone the more idiotic i feel hence the unintelligible blabbering What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.68it/s]
--- Text 820 --- Text: 'i was feeling content and oh so happy with my life' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i was feeling content and oh so happy with my life What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was feeling content and oh so happy with my life What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 60%|██████ | 6/10 [00:00<00:00, 13.71it/s]
--- Text 821 --- Text: 'i found myself feeling a bit overwhelmed' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i found myself feeling a bit overwhelmed What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i found myself feeling a bit overwhelmed What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: overwhelmed Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.37it/s] 40%|████ | 4/10 [00:00<00:00, 11.83it/s]
--- Text 822 --- Text: 'i don t know how i feel i guess it s one of those moments where you want to feel like you re accepted even though whatever you did or did not get mattered to you the most' True Emotion: love --- Zero-Shot Prompting --- Prompt: i don t know how i feel i guess it s one of those moments where you want to feel like you re accepted even though whatever you did or did not get mattered to you the most What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i don t know how i feel i guess it s one of those moments where you want to feel like you re accepted even though whatever you did or did not get mattered to you the most What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.11it/s] 50%|█████ | 5/10 [00:00<00:00, 12.51it/s]
--- Text 823 --- Text: 'i wasn t sure what this gnawing feeling i was having but i was getting agitated sitting around doing nothing' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i wasn t sure what this gnawing feeling i was having but i was getting agitated sitting around doing nothing What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i wasn t sure what this gnawing feeling i was having but i was getting agitated sitting around doing nothing What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.39it/s]
--- Text 824 --- Text: 'i dont remember how january was like last year thats why i need a real diary but this one is feeling bitter dark and boring' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i dont remember how january was like last year thats why i need a real diary but this one is feeling bitter dark and boring What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i dont remember how january was like last year thats why i need a real diary but this one is feeling bitter dark and boring What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Boredom Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.86it/s]
--- Text 825 --- Text: 'i normally find intimidating but shes crazy about tiny little foreign food places and people like her so i feel less socially intimidated when im with her' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i normally find intimidating but shes crazy about tiny little foreign food places and people like her so i feel less socially intimidated when im with her What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i normally find intimidating but shes crazy about tiny little foreign food places and people like her so i feel less socially intimidated when im with her What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.17it/s]
--- Text 826 --- Text: 'i feel quite researched and intelligent about my confidence in consuming meat' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel quite researched and intelligent about my confidence in consuming meat What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel quite researched and intelligent about my confidence in consuming meat What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.19it/s] 50%|█████ | 5/10 [00:00<00:00, 13.32it/s]
--- Text 827 --- Text: 'i ate something wrong so i feel terrible all day' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i ate something wrong so i feel terrible all day What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i ate something wrong so i feel terrible all day What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.49it/s]
--- Text 828 --- Text: 'i feel like the place is even more messy' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like the place is even more messy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like the place is even more messy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.73it/s] 20%|██ | 2/10 [00:00<00:00, 9.23it/s]
--- Text 829 --- Text: 'i feel unprotected even while travelling alone' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel unprotected even while travelling alone What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i feel unprotected even while travelling alone What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear. Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.76it/s]
--- Text 830 --- Text: 'i believe feeling duality suffering soul growth tells of an ending or a decline or a change of direction often one associated with emotions and it offers one possible response to that decline or change moving on' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i believe feeling duality suffering soul growth tells of an ending or a decline or a change of direction often one associated with emotions and it offers one possible response to that decline or change moving on What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i believe feeling duality suffering soul growth tells of an ending or a decline or a change of direction often one associated with emotions and it offers one possible response to that decline or change moving on What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.39it/s]
--- Text 831 --- Text: 'i feel really uptight and unable to unwind' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel really uptight and unable to unwind What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel really uptight and unable to unwind What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: uptight Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 10.65it/s]
--- Text 832 --- Text: 'im learning mandarin chinese now in preparation for a trip to tianjin this september and already only four lessons in i feel like i have a handle on the basics and im thrilled to have some insight into a language that had always been a total mystery to me' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im learning mandarin chinese now in preparation for a trip to tianjin this september and already only four lessons in i feel like i have a handle on the basics and im thrilled to have some insight into a language that had always been a total mystery to me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im learning mandarin chinese now in preparation for a trip to tianjin this september and already only four lessons in i feel like i have a handle on the basics and im thrilled to have some insight into a language that had always been a total mystery to me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.18it/s]
--- Text 833 --- Text: 'i think and it feels a little weird' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i think and it feels a little weird What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i think and it feels a little weird What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I think and it feels a little weird Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.71it/s]
--- Text 834 --- Text: 'i feel my truth is accepted and not judged because well' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel my truth is accepted and not judged because well What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel my truth is accepted and not judged because well What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: acceptance Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.15it/s]
--- Text 835 --- Text: 'i feel like an indecisive idiot' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel like an indecisive idiot What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like an indecisive idiot What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.62it/s]
--- Text 836 --- Text: 'i just couldn t decide what to feel she didn t tell me and then she blamed me because i never told her it would be like that' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i just couldn t decide what to feel she didn t tell me and then she blamed me because i never told her it would be like that What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i just couldn t decide what to feel she didn t tell me and then she blamed me because i never told her it would be like that What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.23it/s]
--- Text 837 --- Text: 'i feel for vets the animals whose lives they save are always going to be hostile' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel for vets the animals whose lives they save are always going to be hostile What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel for vets the animals whose lives they save are always going to be hostile What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.44it/s] 50%|█████ | 5/10 [00:00<00:00, 13.56it/s]
--- Text 838 --- Text: 'i still feel more than anything else humiliated whenever i think of everything that s happened' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i still feel more than anything else humiliated whenever i think of everything that s happened What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is humili Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i still feel more than anything else humiliated whenever i think of everything that s happened What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: humiliation Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.20it/s] 30%|███ | 3/10 [00:00<00:00, 11.39it/s]
--- Text 839 --- Text: 'i feel like i finally want to write about one of my vain hobbies makeup' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like i finally want to write about one of my vain hobbies makeup What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i feel like i finally want to write about one of my vain hobbies makeup What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.68it/s] 40%|████ | 4/10 [00:00<00:00, 12.91it/s]
--- Text 840 --- Text: 'i regularly feel embarrassed about' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i regularly feel embarrassed about What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is embarrass Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i regularly feel embarrassed about What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: embarrassment. Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.77it/s]
--- Text 841 --- Text: 'i then realized that if i want to shoot weddings of clients who i connect with and feel comfortable with i must allow them to get to know me' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i then realized that if i want to shoot weddings of clients who i connect with and feel comfortable with i must allow them to get to know me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i then realized that if i want to shoot weddings of clients who i connect with and feel comfortable with i must allow them to get to know me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.63it/s]
--- Text 842 --- Text: 'i checked the babys heartbeat and continued to feel him moving so besides feeling terrible i was at peace' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i checked the babys heartbeat and continued to feel him moving so besides feeling terrible i was at peace What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i checked the babys heartbeat and continued to feel him moving so besides feeling terrible i was at peace What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Peace Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.79it/s] 40%|████ | 4/10 [00:00<00:00, 11.83it/s]
--- Text 843 --- Text: 'i found myself giggling and clapping my hands more often than a five year old at the ice cream wagon and there was never a point where i didnt feel genuinely entertained' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i found myself giggling and clapping my hands more often than a five year old at the ice cream wagon and there was never a point where i didnt feel genuinely entertained What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i found myself giggling and clapping my hands more often than a five year old at the ice cream wagon and there was never a point where i didnt feel genuinely entertained What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.29it/s]
--- Text 844 --- Text: 'i feel more virtuous just looking at the pictures in her books' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel more virtuous just looking at the pictures in her books What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel more virtuous just looking at the pictures in her books What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.58it/s]
--- Text 845 --- Text: 'i guess it doesn t help that i got sick on black friday and was forced against my will to maintain my promise to stay in but being back in the city feels amazing' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i guess it doesn t help that i got sick on black friday and was forced against my will to maintain my promise to stay in but being back in the city feels amazing What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i guess it doesn t help that i got sick on black friday and was forced against my will to maintain my promise to stay in but being back in the city feels amazing What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.67it/s]
--- Text 846 --- Text: 'i did feel rather like a celebrity and widget stood and let herself be admired while she drank orange squash from my cup' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i did feel rather like a celebrity and widget stood and let herself be admired while she drank orange squash from my cup What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i did feel rather like a celebrity and widget stood and let herself be admired while she drank orange squash from my cup What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: 2. Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.69it/s]
--- Text 847 --- Text: 'i really feel like having my own space anymore is a really vain idea' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i really feel like having my own space anymore is a really vain idea What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i really feel like having my own space anymore is a really vain idea What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.53it/s] 30%|███ | 3/10 [00:00<00:00, 10.30it/s]
--- Text 848 --- Text: 'i can reasonably deduce that my grandfather did also love my mother but that doesn t negate the lifetime of damage that the feeling of being unloved and unwanted created in her' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i can reasonably deduce that my grandfather did also love my mother but that doesn t negate the lifetime of damage that the feeling of being unloved and unwanted created in her What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i can reasonably deduce that my grandfather did also love my mother but that doesn t negate the lifetime of damage that the feeling of being unloved and unwanted created in her What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness. Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.48it/s] 50%|█████ | 5/10 [00:00<00:00, 12.79it/s]
--- Text 849 --- Text: 'im saying this having not read the book the characters were hard to empathise for and a lot of the time i found myself not feeling distraught when something happened but rather uninterested and blank' True Emotion: fear --- Zero-Shot Prompting --- Prompt: im saying this having not read the book the characters were hard to empathise for and a lot of the time i found myself not feeling distraught when something happened but rather uninterested and blank What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is apath Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im saying this having not read the book the characters were hard to empathise for and a lot of the time i found myself not feeling distraught when something happened but rather uninterested and blank What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.19it/s] 40%|████ | 4/10 [00:00<00:00, 12.02it/s]
--- Text 850 --- Text: 'im spending less especially on stuff that wont last long not bringing tons of stuff into the house and i feel more positive about my holiday gift giving' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im spending less especially on stuff that wont last long not bringing tons of stuff into the house and i feel more positive about my holiday gift giving What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Pos Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im spending less especially on stuff that wont last long not bringing tons of stuff into the house and i feel more positive about my holiday gift giving What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.91it/s]
--- Text 851 --- Text: 'i feel embarrassed for not having lost weight again and im afraid that another week of disappointing news at the scale will cause people to give up on me and stop following the blog' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel embarrassed for not having lost weight again and im afraid that another week of disappointing news at the scale will cause people to give up on me and stop following the blog What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel embarrassed for not having lost weight again and im afraid that another week of disappointing news at the scale will cause people to give up on me and stop following the blog What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fear Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.93it/s]
--- Text 852 --- Text: 'i feel a little guilty that i am not doing the same and as i contemplate going back to get some money the prisoners begin to enter the room' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel a little guilty that i am not doing the same and as i contemplate going back to get some money the prisoners begin to enter the room What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel a little guilty that i am not doing the same and as i contemplate going back to get some money the prisoners begin to enter the room What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.96it/s]
--- Text 853 --- Text: 'i careened from feeling confident in my abilities as a writer to being equally sure that i will never ever write anything worth reading' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i careened from feeling confident in my abilities as a writer to being equally sure that i will never ever write anything worth reading What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i careened from feeling confident in my abilities as a writer to being equally sure that i will never ever write anything worth reading What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.10it/s]
--- Text 854 --- Text: 'i feel very honoured to have been asked' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel very honoured to have been asked What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel very honoured to have been asked What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel very honoured to have been Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.29it/s]
--- Text 855 --- Text: 'i feel pathetic that i can hardly go a whole day not talking to him' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel pathetic that i can hardly go a whole day not talking to him What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel pathetic that i can hardly go a whole day not talking to him What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.73it/s]
--- Text 856 --- Text: 'i have faith in supreme power and i accept everything and all incidence occuring in life sometimes like today it really makes me feel very very dull and i start crying' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i have faith in supreme power and i accept everything and all incidence occuring in life sometimes like today it really makes me feel very very dull and i start crying What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have faith in supreme power and i accept everything and all incidence occuring in life sometimes like today it really makes me feel very very dull and i start crying What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.55it/s]
--- Text 857 --- Text: 'i want you to feel just as humiliated as you made me feel in school' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i want you to feel just as humiliated as you made me feel in school What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i want you to feel just as humiliated as you made me feel in school What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: humiliation Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.56it/s] 40%|████ | 4/10 [00:00<00:00, 11.90it/s]
--- Text 858 --- Text: 'i is desperate for kareena akshay kumar will play a double role in flash forward minissha says i still feel today amisha patel in a glamorous avtaar' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i is desperate for kareena akshay kumar will play a double role in flash forward minissha says i still feel today amisha patel in a glamorous avtaar What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i is desperate for kareena akshay kumar will play a double role in flash forward minissha says i still feel today amisha patel in a glamorous avtaar What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.83it/s]
--- Text 859 --- Text: 'i feel like i just doomed myself' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like i just doomed myself What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like i just doomed myself What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.70it/s]
--- Text 860 --- Text: 'always when i am well succeded' True Emotion: joy --- Zero-Shot Prompting --- Prompt: always when i am well succeded What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: always when i am well succeded What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.85it/s]
--- Text 861 --- Text: 'i felt so bad for the bad grade and feeling like having to hide it that i didnt know what to say except to declare in all my frustration that i hated school' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i felt so bad for the bad grade and feeling like having to hide it that i didnt know what to say except to declare in all my frustration that i hated school What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i felt so bad for the bad grade and feeling like having to hide it that i didnt know what to say except to declare in all my frustration that i hated school What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.38it/s]
--- Text 862 --- Text: 'i feel assaulted by this shit storm of confusion anger and hurt feelings that tsunami d us both away from each other' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel assaulted by this shit storm of confusion anger and hurt feelings that tsunami d us both away from each other What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel assaulted by this shit storm of confusion anger and hurt feelings that tsunami d us both away from each other What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.76it/s]
--- Text 863 --- Text: 'i feel so fucking low' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel so fucking low What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so fucking low What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.06it/s]
--- Text 864 --- Text: 'i feel betrayed and angry and sad at the same time dammit' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel betrayed and angry and sad at the same time dammit What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel betrayed and angry and sad at the same time dammit What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.64it/s]
--- Text 865 --- Text: 'i feel reassured that the county government in my county takes the murder of an illegal immigrant in a back alley seriously enough to prosecute someone years later' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel reassured that the county government in my county takes the murder of an illegal immigrant in a back alley seriously enough to prosecute someone years later What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel reassured that the county government in my county takes the murder of an illegal immigrant in a back alley seriously enough to prosecute someone years later What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.09it/s] 100%|██████████| 10/10 [00:00<00:00, 16.53it/s]
--- Text 866 --- Text: 'i don t know how i feel about my submissive learning how to use a firearm' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i don t know how i feel about my submissive learning how to use a firearm What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i don t know how i feel about my submissive learning how to use a firearm What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I don't know how I feel Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.08it/s] 50%|█████ | 5/10 [00:00<00:00, 12.83it/s]
--- Text 867 --- Text: 'i feel so drained at the end of a novel because i try my very hardest to get something from it that will change and impact my life' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel so drained at the end of a novel because i try my very hardest to get something from it that will change and impact my life What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so drained at the end of a novel because i try my very hardest to get something from it that will change and impact my life What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 10%|█ | 1/10 [00:00<00:01, 6.29it/s]
--- Text 868 --- Text: 'i was truly surprised and feel quite honored' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i was truly surprised and feel quite honored What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was truly surprised and feel quite honored What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: surprise Predicted Emotion: surprise --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.55it/s]
--- Text 869 --- Text: 'i hate feeling alone too' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i hate feeling alone too What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i hate feeling alone too What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.70it/s]
--- Text 870 --- Text: 'i feel like if people accepted that wed get along a lot better' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel like if people accepted that wed get along a lot better What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like if people accepted that wed get along a lot better What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.38it/s]
--- Text 871 --- Text: 'i feel the creative juices beginning to flow again' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel the creative juices beginning to flow again What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel the creative juices beginning to flow again What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.73it/s] 40%|████ | 4/10 [00:00<00:00, 12.73it/s]
--- Text 872 --- Text: 'i feel suffocated and paranoid' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel suffocated and paranoid What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i feel suffocated and paranoid What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear Predicted Emotion: fear --------------------
100%|██████████| 10/10 [00:00<00:00, 17.01it/s] 50%|█████ | 5/10 [00:00<00:00, 13.32it/s]
--- Text 873 --- Text: 'i would call success and i was feeling pretty depressed about the state of clothes' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i would call success and i was feeling pretty depressed about the state of clothes What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i would call success and i was feeling pretty depressed about the state of clothes What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.65it/s]
--- Text 874 --- Text: 'i feel soo lonely' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel soo lonely What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel soo lonely What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.38it/s]
--- Text 875 --- Text: 'i see on wednesday im feeling fantastic these days and i can tell im getting smaller and smaller' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i see on wednesday im feeling fantastic these days and i can tell im getting smaller and smaller What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i see on wednesday im feeling fantastic these days and i can tell im getting smaller and smaller What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.57it/s]
--- Text 876 --- Text: 'i feel as though i am on another adventure and i am more curious about it than anything else' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i feel as though i am on another adventure and i am more curious about it than anything else What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel as though i am on another adventure and i am more curious about it than anything else What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Curiosity Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.59it/s]
--- Text 877 --- Text: 'i also feel the sidebar is messy' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i also feel the sidebar is messy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i also feel the sidebar is messy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.25it/s] 30%|███ | 3/10 [00:00<00:00, 11.40it/s]
--- Text 878 --- Text: 'i feel respected and secure where i can journey toward loving and be loved in return' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel respected and secure where i can journey toward loving and be loved in return What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i feel respected and secure where i can journey toward loving and be loved in return What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.80it/s]
--- Text 879 --- Text: 'im feeling relieved yet painful but something inside me is creepily numb i feel like a ghost in the hallways the way i used to just dont tell me its only another time to succumb' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im feeling relieved yet painful but something inside me is creepily numb i feel like a ghost in the hallways the way i used to just dont tell me its only another time to succumb What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling relieved yet painful but something inside me is creepily numb i feel like a ghost in the hallways the way i used to just dont tell me its only another time to succumb What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.38it/s]
--- Text 880 --- Text: 'i feel more amazed and more thankful for having e in our lives' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i feel more amazed and more thankful for having e in our lives What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel more amazed and more thankful for having e in our lives What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.18it/s] 40%|████ | 4/10 [00:00<00:00, 12.57it/s]
--- Text 881 --- Text: 'i must confess that im still feeling very uncertain about how god is going to work everything out' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i must confess that im still feeling very uncertain about how god is going to work everything out What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i must confess that im still feeling very uncertain about how god is going to work everything out What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fear Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.30it/s]
--- Text 882 --- Text: 'i have this really bad feeling that cold is what i will be for a few months' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i have this really bad feeling that cold is what i will be for a few months What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have this really bad feeling that cold is what i will be for a few months What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.48it/s]
--- Text 883 --- Text: 'ive been feeling sort of depressed' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: ive been feeling sort of depressed What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: ive been feeling sort of depressed What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.55it/s]
--- Text 884 --- Text: 'i am just feeling as indecisive as ever i suppose' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i am just feeling as indecisive as ever i suppose What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am just feeling as indecisive as ever i suppose What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Indecision Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.65it/s]
--- Text 885 --- Text: 'i felt abandoned for what seemed like the millionth time in my life and i spent the last several days feeling sorry for myself when i should have been picking myself up in order to help my friends' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i felt abandoned for what seemed like the millionth time in my life and i spent the last several days feeling sorry for myself when i should have been picking myself up in order to help my friends What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i felt abandoned for what seemed like the millionth time in my life and i spent the last several days feeling sorry for myself when i should have been picking myself up in order to help my friends What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.73it/s] 30%|███ | 3/10 [00:00<00:00, 11.41it/s]
--- Text 886 --- Text: 'i enjoy the day more when i feel cute' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i enjoy the day more when i feel cute What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i enjoy the day more when i feel cute What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.54it/s]
--- Text 887 --- Text: 'i was bonded to that point in time and still feel fond of this memory' True Emotion: love --- Zero-Shot Prompting --- Prompt: i was bonded to that point in time and still feel fond of this memory What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was bonded to that point in time and still feel fond of this memory What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.29it/s] 50%|█████ | 5/10 [00:00<00:00, 12.99it/s]
--- Text 888 --- Text: 'i will remember to come to you when i feel beaten and depressed because in faith only can we truly be healed' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i will remember to come to you when i feel beaten and depressed because in faith only can we truly be healed What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i will remember to come to you when i feel beaten and depressed because in faith only can we truly be healed What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.68it/s]
--- Text 889 --- Text: 'i sometimes feel is carried in my heart just by loving my child so fiercely' True Emotion: love --- Zero-Shot Prompting --- Prompt: i sometimes feel is carried in my heart just by loving my child so fiercely What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i sometimes feel is carried in my heart just by loving my child so fiercely What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.82it/s]
--- Text 890 --- Text: 'i feel she said quickly i am so glad' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel she said quickly i am so glad What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel she said quickly i am so glad What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: i feel she said quickly i am so Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.00it/s]
--- Text 891 --- Text: 'i understand that they are reacting to what we re doing i think they re observing us closely and i become happier i can actual feel that they re supporting us' True Emotion: love --- Zero-Shot Prompting --- Prompt: i understand that they are reacting to what we re doing i think they re observing us closely and i become happier i can actual feel that they re supporting us What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i understand that they are reacting to what we re doing i think they re observing us closely and i become happier i can actual feel that they re supporting us What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.66it/s] 40%|████ | 4/10 [00:00<00:00, 12.00it/s]
--- Text 892 --- Text: 'i imagined being in form fitting clothing that was beautiful looking in the mirror and feeling proud being lighter and more energetic' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i imagined being in form fitting clothing that was beautiful looking in the mirror and feeling proud being lighter and more energetic What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i imagined being in form fitting clothing that was beautiful looking in the mirror and feeling proud being lighter and more energetic What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.14it/s] 40%|████ | 4/10 [00:00<00:00, 12.68it/s]
--- Text 893 --- Text: 'i am starting to feel like maybe i do want a relationship im just to stubborn to admit it' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i am starting to feel like maybe i do want a relationship im just to stubborn to admit it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i am starting to feel like maybe i do want a relationship im just to stubborn to admit it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.15it/s]
--- Text 894 --- Text: 'i did feel appreciative of the money that was coming in' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i did feel appreciative of the money that was coming in What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i did feel appreciative of the money that was coming in What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Appreciation Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.77it/s] 40%|████ | 4/10 [00:00<00:00, 12.37it/s]
--- Text 895 --- Text: 'i feel are loyal especially after all ive experienced recently but i can trust him' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel are loyal especially after all ive experienced recently but i can trust him What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i feel are loyal especially after all ive experienced recently but i can trust him What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.41it/s]
--- Text 896 --- Text: 'i feel a pain in my own heart as every priestess in the temple drops as every single ven who is devoted to talia loses their devotions and takes a rank of injury equal to their devotion' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel a pain in my own heart as every priestess in the temple drops as every single ven who is devoted to talia loses their devotions and takes a rank of injury equal to their devotion What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel a pain in my own heart as every priestess in the temple drops as every single ven who is devoted to talia loses their devotions and takes a rank of injury equal to their devotion What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.67it/s]
--- Text 897 --- Text: 'i just feel so smug that we got the exploited and she gets bruno marzzz' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i just feel so smug that we got the exploited and she gets bruno marzzz What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i just feel so smug that we got the exploited and she gets bruno marzzz What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.38it/s]
--- Text 898 --- Text: 'ive been soo excited for him to feel and it was amazing' True Emotion: joy --- Zero-Shot Prompting --- Prompt: ive been soo excited for him to feel and it was amazing What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: ive been soo excited for him to feel and it was amazing What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.60it/s]
--- Text 899 --- Text: 'i feel kinda lousy about myself' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel kinda lousy about myself What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel kinda lousy about myself What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.34it/s]
--- Text 900 --- Text: 'i know he does the same thing for so many passersby i feel special truly welcome in his country' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i know he does the same thing for so many passersby i feel special truly welcome in his country What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i know he does the same thing for so many passersby i feel special truly welcome in his country What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 60%|██████ | 6/10 [00:00<00:00, 13.89it/s]
--- Text 901 --- Text: 'i didnt start feeling the excitement until the movie was almost over and then it started coming in violent waves' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i didnt start feeling the excitement until the movie was almost over and then it started coming in violent waves What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i didnt start feeling the excitement until the movie was almost over and then it started coming in violent waves What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: violent waves Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.39it/s]
--- Text 902 --- Text: 'i feel so blessed to have friends i can come to' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel so blessed to have friends i can come to What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so blessed to have friends i can come to What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.27it/s]
--- Text 903 --- Text: 'i am feeling very strange but this is also present movement and i am trying this as one of way' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i am feeling very strange but this is also present movement and i am trying this as one of way What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling very strange but this is also present movement and i am trying this as one of way What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.73it/s]
--- Text 904 --- Text: 'i feel like that s acceptable' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like that s acceptable What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like that s acceptable What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.72it/s]
--- Text 905 --- Text: 'i feel like im boring sometimes im okay with that' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like im boring sometimes im okay with that What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like im boring sometimes im okay with that What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: boring Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.85it/s]
--- Text 906 --- Text: 'i have felt the need to write out my sometimes anxious feelings impatient thoughts lists of things that still should could be done before this baby arrives' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i have felt the need to write out my sometimes anxious feelings impatient thoughts lists of things that still should could be done before this baby arrives What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have felt the need to write out my sometimes anxious feelings impatient thoughts lists of things that still should could be done before this baby arrives What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fear Predicted Emotion: fear --------------------
100%|██████████| 10/10 [00:00<00:00, 17.03it/s] 100%|██████████| 10/10 [00:00<00:00, 17.17it/s]
--- Text 907 --- Text: 'i feel like life is so vain' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like life is so vain What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel like life is so vain What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: i feel like life is so vain Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 60%|██████ | 6/10 [00:00<00:00, 13.72it/s]
--- Text 908 --- Text: 'i dropped off the script and left feeling dissatisfied with myself' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i dropped off the script and left feeling dissatisfied with myself What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i dropped off the script and left feeling dissatisfied with myself What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: dissatisfaction Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.31it/s]
--- Text 909 --- Text: 'im starting to feel really pathetic giving the bulk of my enthusiasm these days to the kardashians us weekly and roseanne marathons and completely ignoring this blog' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im starting to feel really pathetic giving the bulk of my enthusiasm these days to the kardashians us weekly and roseanne marathons and completely ignoring this blog What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im starting to feel really pathetic giving the bulk of my enthusiasm these days to the kardashians us weekly and roseanne marathons and completely ignoring this blog What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.48it/s] 20%|██ | 2/10 [00:00<00:00, 9.52it/s]
--- Text 910 --- Text: 'i feel love se inscrie intr un rafinament lejer romantic si extrem de feminin' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel love se inscrie intr un rafinament lejer romantic si extrem de feminin What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i feel love se inscrie intr un rafinament lejer romantic si extrem de feminin What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.93it/s]
--- Text 911 --- Text: 'i really wish i had more time to explore twitter as i feel like i lost a lot of time learning how to use the site' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i really wish i had more time to explore twitter as i feel like i lost a lot of time learning how to use the site What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i really wish i had more time to explore twitter as i feel like i lost a lot of time learning how to use the site What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.52it/s] 40%|████ | 4/10 [00:00<00:00, 11.85it/s]
--- Text 912 --- Text: 'i love doing yoga i love learning about it i love what it has made me and when i think about sharing that with yoga students of my own i feel so hopeful and excited' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i love doing yoga i love learning about it i love what it has made me and when i think about sharing that with yoga students of my own i feel so hopeful and excited What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i love doing yoga i love learning about it i love what it has made me and when i think about sharing that with yoga students of my own i feel so hopeful and excited What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.47it/s]
--- Text 913 --- Text: 'i went to training feeling very disheartened' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i went to training feeling very disheartened What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i went to training feeling very disheartened What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.92it/s]
--- Text 914 --- Text: 'i feel so glad doing this' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel so glad doing this What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so glad doing this What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.03it/s]
--- Text 915 --- Text: 'i do is priceless and i feel so honoured for every mum and dad who trusts me with their new arrival' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i do is priceless and i feel so honoured for every mum and dad who trusts me with their new arrival What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i do is priceless and i feel so honoured for every mum and dad who trusts me with their new arrival What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.47it/s]
--- Text 916 --- Text: 'i felt really bad because claudia and i have always had an amazing time in la and i could feel that she was disappointed that this trip was not turning out to be as fun and amazing as it could have been' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i felt really bad because claudia and i have always had an amazing time in la and i could feel that she was disappointed that this trip was not turning out to be as fun and amazing as it could have been What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i felt really bad because claudia and i have always had an amazing time in la and i could feel that she was disappointed that this trip was not turning out to be as fun and amazing as it could have been What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.79it/s]
--- Text 917 --- Text: 'i remember feeling nervous' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i remember feeling nervous What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i remember feeling nervous What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: nervous Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.75it/s]
--- Text 918 --- Text: 'i feel the need to pimp this since raini my beloved rocky casting director loves it so much' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel the need to pimp this since raini my beloved rocky casting director loves it so much What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel the need to pimp this since raini my beloved rocky casting director loves it so much What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.43it/s]
--- Text 919 --- Text: 'i feel like my life has been taken over by a video game and im doomed to repeat the same set of circumstances over and over again until i collect all of the special powers knowledge and treasures to finally advance me to the next level' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like my life has been taken over by a video game and im doomed to repeat the same set of circumstances over and over again until i collect all of the special powers knowledge and treasures to finally advance me to the next level What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like my life has been taken over by a video game and im doomed to repeat the same set of circumstances over and over again until i collect all of the special powers knowledge and treasures to finally advance me to the next level What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.30it/s] 50%|█████ | 5/10 [00:00<00:00, 13.34it/s]
--- Text 920 --- Text: 'i feel like i m the one being punished' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like i m the one being punished What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i feel like i m the one being punished What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.37it/s]
--- Text 921 --- Text: 'i kept feeling wonderful as i ran and couldnt believe it' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i kept feeling wonderful as i ran and couldnt believe it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i kept feeling wonderful as i ran and couldnt believe it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.55it/s] 30%|███ | 3/10 [00:00<00:00, 10.51it/s]
--- Text 922 --- Text: 'i feel less stress about doing pretty much any unpleasant obligation in life because i know that i will allow myself to mix it with things i enjoy running baking climbing coffee with girlfriends cuddling with my dog reading a book' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel less stress about doing pretty much any unpleasant obligation in life because i know that i will allow myself to mix it with things i enjoy running baking climbing coffee with girlfriends cuddling with my dog reading a book What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i feel less stress about doing pretty much any unpleasant obligation in life because i know that i will allow myself to mix it with things i enjoy running baking climbing coffee with girlfriends cuddling with my dog reading a book What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.38it/s] 50%|█████ | 5/10 [00:00<00:00, 12.47it/s]
--- Text 923 --- Text: 'i was lying in bed last night after a day of making experiments from the usual suspects fabric plastic and feeling agitated that my issues with proper presentation had not made any headway over the course of a mere six hours' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i was lying in bed last night after a day of making experiments from the usual suspects fabric plastic and feeling agitated that my issues with proper presentation had not made any headway over the course of a mere six hours What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is agitation Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was lying in bed last night after a day of making experiments from the usual suspects fabric plastic and feeling agitated that my issues with proper presentation had not made any headway over the course of a mere six hours What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: A. Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.11it/s]
--- Text 924 --- Text: 'i am working right now guys and feel horny and so much passion' True Emotion: love --- Zero-Shot Prompting --- Prompt: i am working right now guys and feel horny and so much passion What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am working right now guys and feel horny and so much passion What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 16.88it/s] 60%|██████ | 6/10 [00:00<00:00, 13.66it/s]
--- Text 925 --- Text: 'i feel like im being greedy asking for something so expensive' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel like im being greedy asking for something so expensive What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i feel like im being greedy asking for something so expensive What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: GREEDY Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 80%|████████ | 8/10 [00:00<00:00, 14.56it/s]
--- Text 926 --- Text: 'i see him i feel friendly' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i see him i feel friendly What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i see him i feel friendly What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: i see him i feel friendly Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.40it/s] 40%|████ | 4/10 [00:00<00:00, 11.79it/s]
--- Text 927 --- Text: 'i couldn t tell if he was sick injured or just feeling generally awful but he climbed into the team car and abandoned the race right there with spectators snapping away on their phones' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i couldn t tell if he was sick injured or just feeling generally awful but he climbed into the team car and abandoned the race right there with spectators snapping away on their phones What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i couldn t tell if he was sick injured or just feeling generally awful but he climbed into the team car and abandoned the race right there with spectators snapping away on their phones What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.86it/s]
--- Text 928 --- Text: 'i forced myself to keep going back even though they made me feel consistently uncomfortable but after a while i just gave up as i saw no point' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i forced myself to keep going back even though they made me feel consistently uncomfortable but after a while i just gave up as i saw no point What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i forced myself to keep going back even though they made me feel consistently uncomfortable but after a while i just gave up as i saw no point What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.52it/s] 30%|███ | 3/10 [00:00<00:00, 10.55it/s]
--- Text 929 --- Text: 'i wonder if im vain because i love dressing up and attempting to be fashionable but then i realized that there is nothing wrong with dressing so that you feel pretty cute smart whatever' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i wonder if im vain because i love dressing up and attempting to be fashionable but then i realized that there is nothing wrong with dressing so that you feel pretty cute smart whatever What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i wonder if im vain because i love dressing up and attempting to be fashionable but then i realized that there is nothing wrong with dressing so that you feel pretty cute smart whatever What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.38it/s]
--- Text 930 --- Text: 'i feel so special and when i want mashed potatoes pronto i get mashed potatoes pronto' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel so special and when i want mashed potatoes pronto i get mashed potatoes pronto What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so special and when i want mashed potatoes pronto i get mashed potatoes pronto What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.82it/s]
--- Text 931 --- Text: 'i cant remember exactly what made me stop using it but i have a feeling i got distracted by other hair products and just sort of forgot about this one' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i cant remember exactly what made me stop using it but i have a feeling i got distracted by other hair products and just sort of forgot about this one What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i cant remember exactly what made me stop using it but i have a feeling i got distracted by other hair products and just sort of forgot about this one What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.85it/s]
--- Text 932 --- Text: 'i can feel some kind of acceptance in the song which is why i gave the photo a kind of ecstatic ascension to a higher level of conscience aesthetic like a rapture of sort' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i can feel some kind of acceptance in the song which is why i gave the photo a kind of ecstatic ascension to a higher level of conscience aesthetic like a rapture of sort What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i can feel some kind of acceptance in the song which is why i gave the photo a kind of ecstatic ascension to a higher level of conscience aesthetic like a rapture of sort What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.60it/s]
--- Text 933 --- Text: 'i am or who i m with i always feel alone' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i am or who i m with i always feel alone What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am or who i m with i always feel alone What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.68it/s]
--- Text 934 --- Text: 'i have a feeling hell be the kid up there shooting daggers out of his eyes annoyed that hes standing up there holding flowers' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i have a feeling hell be the kid up there shooting daggers out of his eyes annoyed that hes standing up there holding flowers What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have a feeling hell be the kid up there shooting daggers out of his eyes annoyed that hes standing up there holding flowers What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.75it/s]
--- Text 935 --- Text: 'i dont know if i feel thrilled at finally getting to go camping again with people i like and know first time where thats happened' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i dont know if i feel thrilled at finally getting to go camping again with people i like and know first time where thats happened What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i dont know if i feel thrilled at finally getting to go camping again with people i like and know first time where thats happened What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: N/A - The text does not Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.79it/s]
--- Text 936 --- Text: 'i feel and talk like a disadvantaged child and am waiting for half my face to come back to me' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel and talk like a disadvantaged child and am waiting for half my face to come back to me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel and talk like a disadvantaged child and am waiting for half my face to come back to me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.49it/s] 60%|██████ | 6/10 [00:00<00:00, 14.02it/s]
--- Text 937 --- Text: 'i can t help but feel really nostalgic of the disney levels' True Emotion: love --- Zero-Shot Prompting --- Prompt: i can t help but feel really nostalgic of the disney levels What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is nostalg Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i can t help but feel really nostalgic of the disney levels What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Nostalgia Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.56it/s]
--- Text 938 --- Text: 'i feel is entirely more dangerous' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel is entirely more dangerous What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel is entirely more dangerous What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
100%|██████████| 10/10 [00:00<00:00, 16.71it/s] 30%|███ | 3/10 [00:00<00:00, 10.05it/s]
--- Text 939 --- Text: 'i remember feeling thrilled to use my nursing skills relieved that i could have a few days out of the house and i remember that at first it was hard but then it was no problem' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i remember feeling thrilled to use my nursing skills relieved that i could have a few days out of the house and i remember that at first it was hard but then it was no problem What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i remember feeling thrilled to use my nursing skills relieved that i could have a few days out of the house and i remember that at first it was hard but then it was no problem What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.46it/s]
--- Text 940 --- Text: 'i found myself being amazed at how mid s f would feel a tad cool as if perhaps a sweatshirt wouldve been a good idea' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i found myself being amazed at how mid s f would feel a tad cool as if perhaps a sweatshirt wouldve been a good idea What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i found myself being amazed at how mid s f would feel a tad cool as if perhaps a sweatshirt wouldve been a good idea What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Surprise Predicted Emotion: surprise --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.54it/s]
--- Text 941 --- Text: 'i feel like a may have mislead the very gracious readers of this blog' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like a may have mislead the very gracious readers of this blog What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like a may have mislead the very gracious readers of this blog What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.63it/s]
--- Text 942 --- Text: 'i still feel confused and guilty about the whole thing' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i still feel confused and guilty about the whole thing What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i still feel confused and guilty about the whole thing What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: confusion Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.41it/s]
--- Text 943 --- Text: 'i feel intimidated by the tasks you feel overwhelmed by huge and complicated tasks' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel intimidated by the tasks you feel overwhelmed by huge and complicated tasks What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel intimidated by the tasks you feel overwhelmed by huge and complicated tasks What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fear Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.67it/s]
--- Text 944 --- Text: 'i was feeling emotional crying for no apparent reason but at the time it feels like the world is ending' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i was feeling emotional crying for no apparent reason but at the time it feels like the world is ending What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was feeling emotional crying for no apparent reason but at the time it feels like the world is ending What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.79it/s]
--- Text 945 --- Text: 'i feel lonely and sad when i cannot talk to you during the day while i get a moment at my desk' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel lonely and sad when i cannot talk to you during the day while i get a moment at my desk What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel lonely and sad when i cannot talk to you during the day while i get a moment at my desk What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.40it/s]
--- Text 946 --- Text: 'i still sit back and feel amazed by the whole thing' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i still sit back and feel amazed by the whole thing What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i still sit back and feel amazed by the whole thing What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Surprise Predicted Emotion: surprise --------------------
100%|██████████| 10/10 [00:00<00:00, 16.69it/s] 20%|██ | 2/10 [00:00<00:00, 9.22it/s]
--- Text 947 --- Text: 'i feel rejected and i cant find what ive left behind' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel rejected and i cant find what ive left behind What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel rejected and i cant find what ive left behind What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.46it/s] 50%|█████ | 5/10 [00:00<00:00, 12.79it/s]
--- Text 948 --- Text: 'i feel like i cant have dirty dishes piled up laundry strewn about or toys scattered everywhere' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like i cant have dirty dishes piled up laundry strewn about or toys scattered everywhere What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is likely: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like i cant have dirty dishes piled up laundry strewn about or toys scattered everywhere What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.41it/s]
--- Text 949 --- Text: 'i feel more so lately than ever that life is so precious' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel more so lately than ever that life is so precious What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel more so lately than ever that life is so precious What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.71it/s]
--- Text 950 --- Text: 'i feel completely burdened with my own intelligence' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel completely burdened with my own intelligence What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel completely burdened with my own intelligence What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.08it/s]
--- Text 951 --- Text: 'i cant think of any emotional state that is worse than feeling generally worthless and unlovable' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i cant think of any emotional state that is worse than feeling generally worthless and unlovable What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i cant think of any emotional state that is worse than feeling generally worthless and unlovable What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 10.69it/s]
--- Text 952 --- Text: 'i dont have any photos with me because i was too excited and happy about my prejudging which i did great btw at least i feel tt i did since i felt confident and didnt stutter in front the panel of judges we had and dearest bf was around after doors opened for the public' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i dont have any photos with me because i was too excited and happy about my prejudging which i did great btw at least i feel tt i did since i felt confident and didnt stutter in front the panel of judges we had and dearest bf was around after doors opened for the public What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i dont have any photos with me because i was too excited and happy about my prejudging which i did great btw at least i feel tt i did since i felt confident and didnt stutter in front the panel of judges we had and dearest bf was around after doors opened for the public What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.31it/s] 20%|██ | 2/10 [00:00<00:00, 9.55it/s]
--- Text 953 --- Text: 'im feeling jolly by a href http www' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im feeling jolly by a href http www What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: im feeling jolly by a href http www What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy. Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.78it/s]
--- Text 954 --- Text: 'i feel fake because i think if you really want to have a good conversation and make good contact you have to appear especially self confident and even risk talking to some people which are no good to talk to at all until you meet one person which you have a good connection to' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel fake because i think if you really want to have a good conversation and make good contact you have to appear especially self confident and even risk talking to some people which are no good to talk to at all until you meet one person which you have a good connection to What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel fake because i think if you really want to have a good conversation and make good contact you have to appear especially self confident and even risk talking to some people which are no good to talk to at all until you meet one person which you have a good connection to What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.60it/s]
--- Text 955 --- Text: 'i went around for the rest of the day feeling distressed that i changed my appearance based on someones comments how i made myself even by coincidence more appealing to him and that just felt wrong wrong wrong' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i went around for the rest of the day feeling distressed that i changed my appearance based on someones comments how i made myself even by coincidence more appealing to him and that just felt wrong wrong wrong What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i went around for the rest of the day feeling distressed that i changed my appearance based on someones comments how i made myself even by coincidence more appealing to him and that just felt wrong wrong wrong What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.82it/s]
--- Text 956 --- Text: 'i really enjoy cabernet for how aggressive the flavors tend to be and while this isnt exactly a light wine it still has a general congenial feel to it that i find a very pleasant' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i really enjoy cabernet for how aggressive the flavors tend to be and while this isnt exactly a light wine it still has a general congenial feel to it that i find a very pleasant What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i really enjoy cabernet for how aggressive the flavors tend to be and while this isnt exactly a light wine it still has a general congenial feel to it that i find a very pleasant What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.55it/s]
--- Text 957 --- Text: 'i woke up very early this morning feeling joyful' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i woke up very early this morning feeling joyful What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i woke up very early this morning feeling joyful What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy. Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.52it/s]
--- Text 958 --- Text: 'i wonder how it feels to be loved by someone you love' True Emotion: love --- Zero-Shot Prompting --- Prompt: i wonder how it feels to be loved by someone you love What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i wonder how it feels to be loved by someone you love What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.07it/s] 30%|███ | 3/10 [00:00<00:00, 10.38it/s]
--- Text 959 --- Text: 'i feel as if i havent blogged in ages are at least truly blogged i am doing an update cute little post today' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel as if i havent blogged in ages are at least truly blogged i am doing an update cute little post today What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel as if i havent blogged in ages are at least truly blogged i am doing an update cute little post today What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.56it/s]
--- Text 960 --- Text: 'i feel cared for and accepted' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel cared for and accepted What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel cared for and accepted What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: The emotion of the text is: love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 8.79it/s]
--- Text 961 --- Text: 'i feel passionate about knitting and seeing really good films and the surprisingly awesome tv programs that are on now i cant believe i just wrote that' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel passionate about knitting and seeing really good films and the surprisingly awesome tv programs that are on now i cant believe i just wrote that What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel passionate about knitting and seeing really good films and the surprisingly awesome tv programs that are on now i cant believe i just wrote that What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: surprise. Predicted Emotion: surprise --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.92it/s]
--- Text 962 --- Text: 'im feeling depressed again' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im feeling depressed again What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling depressed again What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: depression Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.31it/s]
--- Text 963 --- Text: 'i feel i feel drained i feel as if talking to others will finish all my strength' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel i feel drained i feel as if talking to others will finish all my strength What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel i feel drained i feel as if talking to others will finish all my strength What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.26it/s] 50%|█████ | 5/10 [00:00<00:00, 13.20it/s]
--- Text 964 --- Text: 'i am feeling ok lots of bruising to my arms where they decided to remove blood from me' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am feeling ok lots of bruising to my arms where they decided to remove blood from me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling ok lots of bruising to my arms where they decided to remove blood from me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.57it/s] 50%|█████ | 5/10 [00:00<00:00, 13.40it/s]
--- Text 965 --- Text: 'i just don t feel that the others are worthwhile' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i just don t feel that the others are worthwhile What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion in this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i just don t feel that the others are worthwhile What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.70it/s]
--- Text 966 --- Text: 'im just feeling listless and bored or something' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im just feeling listless and bored or something What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im just feeling listless and bored or something What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: boredom Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.47it/s] 30%|███ | 3/10 [00:00<00:00, 9.38it/s]
--- Text 967 --- Text: 'i have the joy of allowing kids to feel like the valued treasures that they are and to just have a blast being a kid alongside with them but can i just say its an incredibly humbling experience to have influence into a childs life and to know that what you do and say is being internalized' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i have the joy of allowing kids to feel like the valued treasures that they are and to just have a blast being a kid alongside with them but can i just say its an incredibly humbling experience to have influence into a childs life and to know that what you do and say is being internalized What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i have the joy of allowing kids to feel like the valued treasures that they are and to just have a blast being a kid alongside with them but can i just say its an incredibly humbling experience to have influence into a childs life and to know that what you do and say is being internalized What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.02it/s] 50%|█████ | 5/10 [00:00<00:00, 12.93it/s]
--- Text 968 --- Text: 'i sometimes feel irritated at the thought of spending money on a few annuals to spruce up my doorstep' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i sometimes feel irritated at the thought of spending money on a few annuals to spruce up my doorstep What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is irrit Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i sometimes feel irritated at the thought of spending money on a few annuals to spruce up my doorstep What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: irritation Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.36it/s]
--- Text 969 --- Text: 'i wish i could bottle her squeals of delight and take them out whenever im feeling grumpy' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i wish i could bottle her squeals of delight and take them out whenever im feeling grumpy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i wish i could bottle her squeals of delight and take them out whenever im feeling grumpy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 60%|██████ | 6/10 [00:00<00:00, 14.20it/s]
--- Text 970 --- Text: 'i have been feeling overwhelmed with it all and needing to take time out' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i have been feeling overwhelmed with it all and needing to take time out What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have been feeling overwhelmed with it all and needing to take time out What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Overwhelmed Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.55it/s]
--- Text 971 --- Text: 'im feeling dangerous and ill just write and figure out where the hell itll take me' True Emotion: anger --- Zero-Shot Prompting --- Prompt: im feeling dangerous and ill just write and figure out where the hell itll take me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling dangerous and ill just write and figure out where the hell itll take me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Dangerous Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.77it/s] 100%|██████████| 10/10 [00:00<00:00, 16.95it/s]
--- Text 972 --- Text: 'i honestly thought impossible at this point i feel pretty' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i honestly thought impossible at this point i feel pretty What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i honestly thought impossible at this point i feel pretty What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I honestly thought it was impossible at Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.44it/s] 50%|█████ | 5/10 [00:00<00:00, 12.78it/s]
--- Text 973 --- Text: 'i have found that some korean men are turning to foreign women because of the freedom they feel it can be easily accounted for that dating between koreans can be a casual thing but more often than not it tends to be a serious matter' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i have found that some korean men are turning to foreign women because of the freedom they feel it can be easily accounted for that dating between koreans can be a casual thing but more often than not it tends to be a serious matter What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i have found that some korean men are turning to foreign women because of the freedom they feel it can be easily accounted for that dating between koreans can be a casual thing but more often than not it tends to be a serious matter What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.67it/s]
--- Text 974 --- Text: 'i think i was also having a pity party because i am feeling a bit frustrated with how little time i seem to have each day' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i think i was also having a pity party because i am feeling a bit frustrated with how little time i seem to have each day What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i think i was also having a pity party because i am feeling a bit frustrated with how little time i seem to have each day What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.02it/s] 100%|██████████| 10/10 [00:00<00:00, 16.77it/s]
--- Text 975 --- Text: 'i forgive myself for accepting and allowing myself to have the feeling that i am going to get punished for doing something wrong' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i forgive myself for accepting and allowing myself to have the feeling that i am going to get punished for doing something wrong What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i forgive myself for accepting and allowing myself to have the feeling that i am going to get punished for doing something wrong What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Forgiveness is a process that involves Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.78it/s] 40%|████ | 4/10 [00:00<00:00, 11.89it/s]
--- Text 976 --- Text: 'i feel like i m part of the problem when i call out missy jane s trusting an angel cover for not airbrushing out all the real skin on the cover model s' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like i m part of the problem when i call out missy jane s trusting an angel cover for not airbrushing out all the real skin on the cover model s What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i feel like i m part of the problem when i call out missy jane s trusting an angel cover for not airbrushing out all the real skin on the cover model s What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.42it/s]
--- Text 977 --- Text: 'i might feel offended at times from hearing statements where that i strongly disagree' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i might feel offended at times from hearing statements where that i strongly disagree What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i might feel offended at times from hearing statements where that i strongly disagree What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.62it/s]
--- Text 978 --- Text: 'i can easily feel quite pressured by routines and i really noticed the difference while i was away' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i can easily feel quite pressured by routines and i really noticed the difference while i was away What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i can easily feel quite pressured by routines and i really noticed the difference while i was away What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: N/A - The text does not Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.15it/s] 30%|███ | 3/10 [00:00<00:00, 10.66it/s]
--- Text 979 --- Text: 'i was feeling the need for some christmas crafting this week especially after seeing a couple of lovely quilty christmas projects at stitch group' True Emotion: love --- Zero-Shot Prompting --- Prompt: i was feeling the need for some christmas crafting this week especially after seeing a couple of lovely quilty christmas projects at stitch group What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Joy Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i was feeling the need for some christmas crafting this week especially after seeing a couple of lovely quilty christmas projects at stitch group What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.13it/s] 40%|████ | 4/10 [00:00<00:00, 11.90it/s]
--- Text 980 --- Text: 'i can cycle further than ever before and the feeling of finishing the manchester to blackpool miles then not being at all bothered at having to ride an extra mile to put' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i can cycle further than ever before and the feeling of finishing the manchester to blackpool miles then not being at all bothered at having to ride an extra mile to put What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i can cycle further than ever before and the feeling of finishing the manchester to blackpool miles then not being at all bothered at having to ride an extra mile to put What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.55it/s]
--- Text 981 --- Text: 'im not sure how i feel more than anything im keen to see it as a test to see if im over him yet and ready to view him as a friend' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im not sure how i feel more than anything im keen to see it as a test to see if im over him yet and ready to view him as a friend What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im not sure how i feel more than anything im keen to see it as a test to see if im over him yet and ready to view him as a friend What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.18it/s] 50%|█████ | 5/10 [00:00<00:00, 13.14it/s]
--- Text 982 --- Text: 'i also feel lethargic and again' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i also feel lethargic and again What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is leth Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i also feel lethargic and again What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.29it/s] 30%|███ | 3/10 [00:00<00:00, 11.42it/s]
--- Text 983 --- Text: 'im feeling somewhat nostalgic about the game just from the fact that its star wars' True Emotion: love --- Zero-Shot Prompting --- Prompt: im feeling somewhat nostalgic about the game just from the fact that its star wars What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is nostalg Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling somewhat nostalgic about the game just from the fact that its star wars What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.57it/s] 40%|████ | 4/10 [00:00<00:00, 11.40it/s]
--- Text 984 --- Text: 'i don t feel like i should be punished to carry this burden even though i have been for four years now' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i don t feel like i should be punished to carry this burden even though i have been for four years now What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i don t feel like i should be punished to carry this burden even though i have been for four years now What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 10.44it/s]
--- Text 985 --- Text: 'i was feeling like i said humour gets me through im one of those people who even if i spoke about my issues no one would be too bothered or would care that thought was in my head and wasnt true that way of being like i dont want to burden you sort of thing' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i was feeling like i said humour gets me through im one of those people who even if i spoke about my issues no one would be too bothered or would care that thought was in my head and wasnt true that way of being like i dont want to burden you sort of thing What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was feeling like i said humour gets me through im one of those people who even if i spoke about my issues no one would be too bothered or would care that thought was in my head and wasnt true that way of being like i dont want to burden you sort of thing What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.38it/s] 20%|██ | 2/10 [00:00<00:00, 8.60it/s]
--- Text 986 --- Text: 'i feel about this part of my life and how treasured my london flatmates are to me it was especially neat to point at something and say this is where' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel about this part of my life and how treasured my london flatmates are to me it was especially neat to point at something and say this is where What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i feel about this part of my life and how treasured my london flatmates are to me it was especially neat to point at something and say this is where What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.47it/s]
--- Text 987 --- Text: 'i feel all innocent now' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel all innocent now What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel all innocent now What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel all innocent now Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.74it/s] 30%|███ | 3/10 [00:00<00:00, 11.42it/s]
--- Text 988 --- Text: 'i feel hopeful with this new treatment to extend my life' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel hopeful with this new treatment to extend my life What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is hopeful Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel hopeful with this new treatment to extend my life What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.58it/s]
--- Text 989 --- Text: 'i feel like an idiot for trusting you though' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like an idiot for trusting you though What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like an idiot for trusting you though What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.57it/s]
--- Text 990 --- Text: 'i am only providing the link as a courtesy to its author but it was all about stuff that was either before my time or i never experienced even if i lived when it was available so i couldn t feel emotional about any of it' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i am only providing the link as a courtesy to its author but it was all about stuff that was either before my time or i never experienced even if i lived when it was available so i couldn t feel emotional about any of it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am only providing the link as a courtesy to its author but it was all about stuff that was either before my time or i never experienced even if i lived when it was available so i couldn t feel emotional about any of it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: None of the above. The author of Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.66it/s]
--- Text 991 --- Text: 'i have a feeling i kinda lost my best friend' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i have a feeling i kinda lost my best friend What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have a feeling i kinda lost my best friend What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.61it/s]
--- Text 992 --- Text: 'ive had a few rough days since then and in the midst of crying and dealing and feeling just so defeated and emotional i put my coat on and curled up and created this safety nest inside my coat' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: ive had a few rough days since then and in the midst of crying and dealing and feeling just so defeated and emotional i put my coat on and curled up and created this safety nest inside my coat What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: ive had a few rough days since then and in the midst of crying and dealing and feeling just so defeated and emotional i put my coat on and curled up and created this safety nest inside my coat What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.19it/s]
--- Text 993 --- Text: 'i do feel terribly remourseful that i didnt stay faithful to my plans and get him sooner' True Emotion: love --- Zero-Shot Prompting --- Prompt: i do feel terribly remourseful that i didnt stay faithful to my plans and get him sooner What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i do feel terribly remourseful that i didnt stay faithful to my plans and get him sooner What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Remorse Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.36it/s]
--- Text 994 --- Text: 'i went to a wedding this weekend and i have to say i was feeling very important' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i went to a wedding this weekend and i have to say i was feeling very important What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i went to a wedding this weekend and i have to say i was feeling very important What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.67it/s]
--- Text 995 --- Text: 'i should stop reading sids blogs but it is part of my blogging community and i feel that in supporting each other we get better at handling grief and hence i am not going to stop' True Emotion: love --- Zero-Shot Prompting --- Prompt: i should stop reading sids blogs but it is part of my blogging community and i feel that in supporting each other we get better at handling grief and hence i am not going to stop What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i should stop reading sids blogs but it is part of my blogging community and i feel that in supporting each other we get better at handling grief and hence i am not going to stop What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.88it/s]
--- Text 996 --- Text: 'i feel less shy about exploring roles in more physical ways' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel less shy about exploring roles in more physical ways What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel less shy about exploring roles in more physical ways What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.67it/s]
--- Text 997 --- Text: 'i replied feeling strange at giving the orders' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i replied feeling strange at giving the orders What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i replied feeling strange at giving the orders What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Strange Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.27it/s] 40%|████ | 4/10 [00:00<00:00, 12.14it/s]
--- Text 998 --- Text: 'i chant the invocation and feel his force supporting me as i teach' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i chant the invocation and feel his force supporting me as i teach What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i chant the invocation and feel his force supporting me as i teach What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.46it/s]
--- Text 999 --- Text: 'i feel like he moves sleep i am glad i enjoyed that week of good sleep that i mentioned because i have a feeling that is over with now' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like he moves sleep i am glad i enjoyed that week of good sleep that i mentioned because i have a feeling that is over with now What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like he moves sleep i am glad i enjoyed that week of good sleep that i mentioned because i have a feeling that is over with now What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.54it/s]
--- Text 1000 --- Text: 'i am really hurt and i feel unimportant and that sucks' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i am really hurt and i feel unimportant and that sucks What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am really hurt and i feel unimportant and that sucks What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.96it/s] 40%|████ | 4/10 [00:00<00:00, 11.63it/s]
--- Text 1001 --- Text: 'i grew up around this feeling living only minutes away from the gorgeous atlantic ocean in brazil so its probably no surprise i grew fond of the ocean' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i grew up around this feeling living only minutes away from the gorgeous atlantic ocean in brazil so its probably no surprise i grew fond of the ocean What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i grew up around this feeling living only minutes away from the gorgeous atlantic ocean in brazil so its probably no surprise i grew fond of the ocean What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.19it/s] 100%|██████████| 10/10 [00:00<00:00, 16.77it/s]
--- Text 1002 --- Text: 'i feel honoured today olu jacobs i feel honoured today olu jacobs a href http momo' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel honoured today olu jacobs i feel honoured today olu jacobs a href http momo What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel honoured today olu jacobs i feel honoured today olu jacobs a href http momo What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel honoured today, Olu Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.69it/s]
--- Text 1003 --- Text: 'i made some chilli oil because it s monday and i was feeling dangerous' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i made some chilli oil because it s monday and i was feeling dangerous What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i made some chilli oil because it s monday and i was feeling dangerous What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Danger Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.48it/s] 40%|████ | 4/10 [00:00<00:00, 12.47it/s]
--- Text 1004 --- Text: 'i started walking again yesterday and it feels amazing' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i started walking again yesterday and it feels amazing What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is JO Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i started walking again yesterday and it feels amazing What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.35it/s]
--- Text 1005 --- Text: 'ive also been feeling somewhat emo irritable lately' True Emotion: anger --- Zero-Shot Prompting --- Prompt: ive also been feeling somewhat emo irritable lately What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: ive also been feeling somewhat emo irritable lately What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.51it/s]
--- Text 1006 --- Text: 'i felt joyful then it subsided now i feel joyful again' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i felt joyful then it subsided now i feel joyful again What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i felt joyful then it subsided now i feel joyful again What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy. Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.82it/s]
--- Text 1007 --- Text: 'i feel like i have to shy away from triggering some stereotype of a person who will scream and break things because they didnt get to eat their favorite kind of sandwich' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel like i have to shy away from triggering some stereotype of a person who will scream and break things because they didnt get to eat their favorite kind of sandwich What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like i have to shy away from triggering some stereotype of a person who will scream and break things because they didnt get to eat their favorite kind of sandwich What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.59it/s]
--- Text 1008 --- Text: 'i feel completely distracted and emotionally drained' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel completely distracted and emotionally drained What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel completely distracted and emotionally drained What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.51it/s]
--- Text 1009 --- Text: 'i exhausted and feeling a little morose but now im livid on top of everything else' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i exhausted and feeling a little morose but now im livid on top of everything else What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i exhausted and feeling a little morose but now im livid on top of everything else What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.73it/s]
--- Text 1010 --- Text: 'i feel so safe and tucked away' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel so safe and tucked away What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so safe and tucked away What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Safety Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.81it/s]
--- Text 1011 --- Text: 'im feeling too tortured to write today' True Emotion: fear --- Zero-Shot Prompting --- Prompt: im feeling too tortured to write today What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling too tortured to write today What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.97it/s]
--- Text 1012 --- Text: 'i promise youll feel inspired afterwards' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i promise youll feel inspired afterwards What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i promise youll feel inspired afterwards What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I promise you'll feel inspired afterwards Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.69it/s]
--- Text 1013 --- Text: 'i feel however i have something far more precious than feelings' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel however i have something far more precious than feelings What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel however i have something far more precious than feelings What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: i feel however i have something far more Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.38it/s]
--- Text 1014 --- Text: 'i feel that working together and supporting each other as a whole i can represent a larger younger voice in politics what can i say to that' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel that working together and supporting each other as a whole i can represent a larger younger voice in politics what can i say to that What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel that working together and supporting each other as a whole i can represent a larger younger voice in politics what can i say to that What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.26it/s] 20%|██ | 2/10 [00:00<00:00, 8.79it/s]
--- Text 1015 --- Text: 'im alone in this apartment i get this overwhelming feeling like im being watched and that im unwelcome' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im alone in this apartment i get this overwhelming feeling like im being watched and that im unwelcome What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: im alone in this apartment i get this overwhelming feeling like im being watched and that im unwelcome What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear. Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.56it/s]
--- Text 1016 --- Text: 'i feel blessed that i have people in my life who remind me all the time that i did the right thing and that i look better like this' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel blessed that i have people in my life who remind me all the time that i did the right thing and that i look better like this What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel blessed that i have people in my life who remind me all the time that i did the right thing and that i look better like this What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.24it/s] 50%|█████ | 5/10 [00:00<00:00, 13.56it/s]
--- Text 1017 --- Text: 'i had come to associate the bad feelings with bad behaviour and this only continued' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i had come to associate the bad feelings with bad behaviour and this only continued What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i had come to associate the bad feelings with bad behaviour and this only continued What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.25it/s]
--- Text 1018 --- Text: 'i feel a lot of affection for you that is longing to be conveyed' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel a lot of affection for you that is longing to be conveyed What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel a lot of affection for you that is longing to be conveyed What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.26it/s] 40%|████ | 4/10 [00:00<00:00, 12.02it/s]
--- Text 1019 --- Text: 'i am and i am looking for some vest tops i have some shorts but long ones due to feel paranoid that i have cellulite everywhere' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i am and i am looking for some vest tops i have some shorts but long ones due to feel paranoid that i have cellulite everywhere What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i am and i am looking for some vest tops i have some shorts but long ones due to feel paranoid that i have cellulite everywhere What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.05it/s]
--- Text 1020 --- Text: 'i feel like it was a bit of divine intervention for me' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like it was a bit of divine intervention for me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like it was a bit of divine intervention for me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.46it/s] 20%|██ | 2/10 [00:00<00:00, 8.67it/s]
--- Text 1021 --- Text: 'i know is that she s here and i m so thankful for her warm loving and peaceful presence i feel when my anger or feelings of discontent and frustration flare up' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i know is that she s here and i m so thankful for her warm loving and peaceful presence i feel when my anger or feelings of discontent and frustration flare up What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i know is that she s here and i m so thankful for her warm loving and peaceful presence i feel when my anger or feelings of discontent and frustration flare up What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 10%|█ | 1/10 [00:00<00:01, 5.70it/s]
--- Text 1022 --- Text: 'im trying to be understanding open minded and fair but im feeling completely pissed to the max about a few things' True Emotion: anger --- Zero-Shot Prompting --- Prompt: im trying to be understanding open minded and fair but im feeling completely pissed to the max about a few things What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im trying to be understanding open minded and fair but im feeling completely pissed to the max about a few things What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
100%|██████████| 10/10 [00:00<00:00, 16.74it/s] 50%|█████ | 5/10 [00:00<00:00, 12.79it/s]
--- Text 1023 --- Text: 'i don t know if this helps at all but writing all of this has made me feel somewhat regretful of ashamed of who i was and while i have more to share i just don t think i can right now' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i don t know if this helps at all but writing all of this has made me feel somewhat regretful of ashamed of who i was and while i have more to share i just don t think i can right now What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is regret. Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i don t know if this helps at all but writing all of this has made me feel somewhat regretful of ashamed of who i was and while i have more to share i just don t think i can right now What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.69it/s]
--- Text 1024 --- Text: 'i feel happy about this solution' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel happy about this solution What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel happy about this solution What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.45it/s] 100%|██████████| 10/10 [00:00<00:00, 16.62it/s]
--- Text 1025 --- Text: 'i did enjoy the book however and i especially liked the characters of the brothers one fired up with the detectin spirit and the other feeling skeptical but willing to back his brother in a fight' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i did enjoy the book however and i especially liked the characters of the brothers one fired up with the detectin spirit and the other feeling skeptical but willing to back his brother in a fight What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i did enjoy the book however and i especially liked the characters of the brothers one fired up with the detectin spirit and the other feeling skeptical but willing to back his brother in a fight What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I did enjoy the book, however, Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.30it/s] 40%|████ | 4/10 [00:00<00:00, 11.74it/s]
--- Text 1026 --- Text: 'im not sure if its just me who feels this way or if its everyone but tortured souls dont make for the best boyfriends' True Emotion: anger --- Zero-Shot Prompting --- Prompt: im not sure if its just me who feels this way or if its everyone but tortured souls dont make for the best boyfriends What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im not sure if its just me who feels this way or if its everyone but tortured souls dont make for the best boyfriends What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.00it/s] 50%|█████ | 5/10 [00:00<00:00, 12.71it/s]
--- Text 1027 --- Text: 'i have not conducted a survey but it is quite likely that many of them feel as assaulted by onel s demons and other creators as i would have felt had the walls been covered only with eminent figures patriotic heroes and epic deeds' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i have not conducted a survey but it is quite likely that many of them feel as assaulted by onel s demons and other creators as i would have felt had the walls been covered only with eminent figures patriotic heroes and epic deeds What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is likely anger Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i have not conducted a survey but it is quite likely that many of them feel as assaulted by onel s demons and other creators as i would have felt had the walls been covered only with eminent figures patriotic heroes and epic deeds What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.27it/s]
--- Text 1028 --- Text: 'i think were on a level of understanding though i still feel hes hesitant' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i think were on a level of understanding though i still feel hes hesitant What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i think were on a level of understanding though i still feel hes hesitant What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I think we're on a level Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.69it/s]
--- Text 1029 --- Text: 'i just feel so virtuous when we go on a fieldtrip' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i just feel so virtuous when we go on a fieldtrip What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i just feel so virtuous when we go on a fieldtrip What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.55it/s]
--- Text 1030 --- Text: 'im not gonna lie i was kinda sad and down and feeling pretty lonely' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im not gonna lie i was kinda sad and down and feeling pretty lonely What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im not gonna lie i was kinda sad and down and feeling pretty lonely What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.69it/s]
--- Text 1031 --- Text: 'im feeling ecstatic about right now the classy ever after redesign project begins this week' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im feeling ecstatic about right now the classy ever after redesign project begins this week What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling ecstatic about right now the classy ever after redesign project begins this week What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.19it/s]
--- Text 1032 --- Text: 'i feel could have been avoided with some blazes markers or cairns i was very annoyed at this point' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel could have been avoided with some blazes markers or cairns i was very annoyed at this point What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel could have been avoided with some blazes markers or cairns i was very annoyed at this point What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.72it/s]
--- Text 1033 --- Text: 'i never told my boyfriend or his parents and i do remember feeling embarrassed and maybe even a little ashamed' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i never told my boyfriend or his parents and i do remember feeling embarrassed and maybe even a little ashamed What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i never told my boyfriend or his parents and i do remember feeling embarrassed and maybe even a little ashamed What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: ashamed Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.29it/s]
--- Text 1034 --- Text: 'i feel more aggravated and annoyed by their visits' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel more aggravated and annoyed by their visits What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel more aggravated and annoyed by their visits What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.59it/s]
--- Text 1035 --- Text: 'im feeling completely idiotic by not being ablo to contribute' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im feeling completely idiotic by not being ablo to contribute What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling completely idiotic by not being ablo to contribute What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.81it/s]
--- Text 1036 --- Text: 'i aint happy im feeling glad i got sunshine in a bag im useless but not for long the future is coming on' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i aint happy im feeling glad i got sunshine in a bag im useless but not for long the future is coming on What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i aint happy im feeling glad i got sunshine in a bag im useless but not for long the future is coming on What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.57it/s] 20%|██ | 2/10 [00:00<00:00, 9.54it/s]
--- Text 1037 --- Text: 'i feel strong is that i dont let the anger win' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel strong is that i dont let the anger win What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i feel strong is that i dont let the anger win What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.77it/s]
--- Text 1038 --- Text: 'i always feel so helpless during times of disaster but i feel a little better knowing that even a few dollars can make a difference for someone in need' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i always feel so helpless during times of disaster but i feel a little better knowing that even a few dollars can make a difference for someone in need What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i always feel so helpless during times of disaster but i feel a little better knowing that even a few dollars can make a difference for someone in need What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.45it/s] 50%|█████ | 5/10 [00:00<00:00, 12.28it/s]
--- Text 1039 --- Text: 'i honestly feel extremely shy to ask my friends to take pictures of me how vain must they think i am' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i honestly feel extremely shy to ask my friends to take pictures of me how vain must they think i am What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i honestly feel extremely shy to ask my friends to take pictures of me how vain must they think i am What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: shyness Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.44it/s] 40%|████ | 4/10 [00:00<00:00, 12.63it/s]
--- Text 1040 --- Text: 'ill find that elusive second wind and feel more hopeful but today i am a href http www' True Emotion: joy --- Zero-Shot Prompting --- Prompt: ill find that elusive second wind and feel more hopeful but today i am a href http www What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is hopeful Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: ill find that elusive second wind and feel more hopeful but today i am a href http www What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.29it/s] 20%|██ | 2/10 [00:00<00:00, 9.52it/s]
--- Text 1041 --- Text: 'i feel intimidated nervous and overwhelmed and i shake like a leaf' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel intimidated nervous and overwhelmed and i shake like a leaf What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i feel intimidated nervous and overwhelmed and i shake like a leaf What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear. Predicted Emotion: fear --------------------
100%|██████████| 10/10 [00:00<00:00, 17.71it/s] 50%|█████ | 5/10 [00:00<00:00, 13.28it/s]
--- Text 1042 --- Text: 'i make myself feel useful by fucking a guy' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i make myself feel useful by fucking a guy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i make myself feel useful by fucking a guy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.12it/s] 50%|█████ | 5/10 [00:00<00:00, 13.24it/s]
--- Text 1043 --- Text: 'i feel most inspired to create and ive been thinking a lot about inspiration this week' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel most inspired to create and ive been thinking a lot about inspiration this week What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel most inspired to create and ive been thinking a lot about inspiration this week What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Inspiration Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.02it/s] 100%|██████████| 10/10 [00:00<00:00, 16.42it/s]
--- Text 1044 --- Text: 'i think most interactions in person are probably fine sufficiently respectful and polite that the ladies don t feel abused' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i think most interactions in person are probably fine sufficiently respectful and polite that the ladies don t feel abused What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i think most interactions in person are probably fine sufficiently respectful and polite that the ladies don t feel abused What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I think most interactions in person are probably Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.02it/s]
--- Text 1045 --- Text: 'im feeling extremely fabulous with my jacket and shoes aint no bitches gonna bring me down hahah' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im feeling extremely fabulous with my jacket and shoes aint no bitches gonna bring me down hahah What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling extremely fabulous with my jacket and shoes aint no bitches gonna bring me down hahah What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.81it/s] 50%|█████ | 5/10 [00:00<00:00, 12.58it/s]
--- Text 1046 --- Text: 'ive have chosen to walk with jesus and maybe im feeling a bit miserable im going to suck it up and think about these three dudes' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: ive have chosen to walk with jesus and maybe im feeling a bit miserable im going to suck it up and think about these three dudes What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: ive have chosen to walk with jesus and maybe im feeling a bit miserable im going to suck it up and think about these three dudes What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.68it/s]
--- Text 1047 --- Text: 'i had a good day but right now im feeling pretty irritable for no real reason meaning nothing significant happened to make me feel annoyed' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i had a good day but right now im feeling pretty irritable for no real reason meaning nothing significant happened to make me feel annoyed What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i had a good day but right now im feeling pretty irritable for no real reason meaning nothing significant happened to make me feel annoyed What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.54it/s]
--- Text 1048 --- Text: 'i am feeling contented and pissed at the same time' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am feeling contented and pissed at the same time What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling contented and pissed at the same time What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
100%|██████████| 10/10 [00:00<00:00, 17.23it/s] 30%|███ | 3/10 [00:00<00:00, 11.08it/s]
--- Text 1049 --- Text: 'i wonder if the homeowners would feel weird if i parked to gape at their landscaping' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i wonder if the homeowners would feel weird if i parked to gape at their landscaping What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is likely fear Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i wonder if the homeowners would feel weird if i parked to gape at their landscaping What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.29it/s]
--- Text 1050 --- Text: 'i both feel impatience at the rate of loss and impressed at the same time' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i both feel impatience at the rate of loss and impressed at the same time What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i both feel impatience at the rate of loss and impressed at the same time What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: impressed Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.42it/s] 40%|████ | 4/10 [00:00<00:00, 11.53it/s]
--- Text 1051 --- Text: 'im a big guy and ive gotten into some of the rigs that weve worked with to try them out and see what they feel like and let me tell you it was less than pleasant' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im a big guy and ive gotten into some of the rigs that weve worked with to try them out and see what they feel like and let me tell you it was less than pleasant What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: im a big guy and ive gotten into some of the rigs that weve worked with to try them out and see what they feel like and let me tell you it was less than pleasant What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fear Predicted Emotion: fear --------------------
100%|██████████| 10/10 [00:00<00:00, 16.59it/s] 40%|████ | 4/10 [00:00<00:00, 10.76it/s]
--- Text 1052 --- Text: 'i ran errands to buy cora a few newborn sized sleepers i had not previously made any newborn sized babies and went out to lunch to celebrate how great i was feeling i feel amazing no pain no pain meds and moving around almost completely normally at days out' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i ran errands to buy cora a few newborn sized sleepers i had not previously made any newborn sized babies and went out to lunch to celebrate how great i was feeling i feel amazing no pain no pain meds and moving around almost completely normally at days out What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i ran errands to buy cora a few newborn sized sleepers i had not previously made any newborn sized babies and went out to lunch to celebrate how great i was feeling i feel amazing no pain no pain meds and moving around almost completely normally at days out What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.04it/s]
--- Text 1053 --- Text: 'i really am not feeling child friendly' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i really am not feeling child friendly What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i really am not feeling child friendly What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I really am not feeling child-friend Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.62it/s]
--- Text 1054 --- Text: 'i feel furious with myself' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel furious with myself What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel furious with myself What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.68it/s]
--- Text 1055 --- Text: 'i think or feel but like this person i am still amazed by them' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i think or feel but like this person i am still amazed by them What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i think or feel but like this person i am still amazed by them What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Surprise Predicted Emotion: surprise --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.85it/s]
--- Text 1056 --- Text: 'i like to think i present myself and the life and times of the working mum to a good standard and if i ever do miss a apostrophe or miss spell a particular word please feel free to call me on it' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i like to think i present myself and the life and times of the working mum to a good standard and if i ever do miss a apostrophe or miss spell a particular word please feel free to call me on it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i like to think i present myself and the life and times of the working mum to a good standard and if i ever do miss a apostrophe or miss spell a particular word please feel free to call me on it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.87it/s]
--- Text 1057 --- Text: 'i don t feel i can ask him what feels like a dumb question' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i don t feel i can ask him what feels like a dumb question What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i don t feel i can ask him what feels like a dumb question What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I don't feel I can ask Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.45it/s]
--- Text 1058 --- Text: 'i feel proud to know several people that have deserved to be advanced for a while now and finally picked it up this time around or last time in a few peoples cases' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel proud to know several people that have deserved to be advanced for a while now and finally picked it up this time around or last time in a few peoples cases What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel proud to know several people that have deserved to be advanced for a while now and finally picked it up this time around or last time in a few peoples cases What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.62it/s]
--- Text 1059 --- Text: 'i give up from my goals if i feel them boring' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i give up from my goals if i feel them boring What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i give up from my goals if i feel them boring What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Boredom Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.76it/s]
--- Text 1060 --- Text: 'i was careful to make sure the characters featured you can feel sympathetic' True Emotion: love --- Zero-Shot Prompting --- Prompt: i was careful to make sure the characters featured you can feel sympathetic What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was careful to make sure the characters featured you can feel sympathetic What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I was careful to make sure the characters Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.20it/s] 40%|████ | 4/10 [00:00<00:00, 11.85it/s]
--- Text 1061 --- Text: 'i didnt make it to my weight watchers meeting feeling guilty i made sure i had a healthy breakfast consisting of museli yoghurt and fruit' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i didnt make it to my weight watchers meeting feeling guilty i made sure i had a healthy breakfast consisting of museli yoghurt and fruit What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i didnt make it to my weight watchers meeting feeling guilty i made sure i had a healthy breakfast consisting of museli yoghurt and fruit What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Guilt Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.71it/s]
--- Text 1062 --- Text: 'i am feeling the tender spot on my foot when i flex it a certain way so it is back to wearing shoes all day for this cowboy' True Emotion: love --- Zero-Shot Prompting --- Prompt: i am feeling the tender spot on my foot when i flex it a certain way so it is back to wearing shoes all day for this cowboy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling the tender spot on my foot when i flex it a certain way so it is back to wearing shoes all day for this cowboy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.82it/s]
--- Text 1063 --- Text: 'i know how that feels weird right' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i know how that feels weird right What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i know how that feels weird right What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.95it/s]
--- Text 1064 --- Text: 'i thought yoga was supposed to make me feel tranquil peaceful and sculpt my legs into those of a greek goddess' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i thought yoga was supposed to make me feel tranquil peaceful and sculpt my legs into those of a greek goddess What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i thought yoga was supposed to make me feel tranquil peaceful and sculpt my legs into those of a greek goddess What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.67it/s]
--- Text 1065 --- Text: 'i just feel its one of those things you dont talk about too much because then too many people come to know and then the plan doesnt taste as sweet nor does it feel like a plan' True Emotion: love --- Zero-Shot Prompting --- Prompt: i just feel its one of those things you dont talk about too much because then too many people come to know and then the plan doesnt taste as sweet nor does it feel like a plan What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i just feel its one of those things you dont talk about too much because then too many people come to know and then the plan doesnt taste as sweet nor does it feel like a plan What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.80it/s]
--- Text 1066 --- Text: 'i left the theater i ran my hand sadly over the plush red backs of the seats in front of me feeling almost mournful that i wasnt going to be back for a long time' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i left the theater i ran my hand sadly over the plush red backs of the seats in front of me feeling almost mournful that i wasnt going to be back for a long time What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i left the theater i ran my hand sadly over the plush red backs of the seats in front of me feeling almost mournful that i wasnt going to be back for a long time What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.60it/s] 20%|██ | 2/10 [00:00<00:00, 8.64it/s]
--- Text 1067 --- Text: 'i asked some girls what it meant to them to be valued and for the most part the response was that they felt valued when the people around them made them feel valued and treated them in a loving and caring manner' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i asked some girls what it meant to them to be valued and for the most part the response was that they felt valued when the people around them made them feel valued and treated them in a loving and caring manner What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i asked some girls what it meant to them to be valued and for the most part the response was that they felt valued when the people around them made them feel valued and treated them in a loving and caring manner What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.89it/s]
--- Text 1068 --- Text: 'i am feeling very petty right now' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i am feeling very petty right now What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling very petty right now What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: petty Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.26it/s] 40%|████ | 4/10 [00:00<00:00, 12.00it/s]
--- Text 1069 --- Text: 'i wasn t the person who was helping i realized that it was i who inspired all these people to start charity work and i can t help but feel proud' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i wasn t the person who was helping i realized that it was i who inspired all these people to start charity work and i can t help but feel proud What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is pride. Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i wasn t the person who was helping i realized that it was i who inspired all these people to start charity work and i can t help but feel proud What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Pride Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.50it/s] 40%|████ | 4/10 [00:00<00:00, 12.69it/s]
--- Text 1070 --- Text: 'i feel so amazingly overwhelming thrilled for my wedding' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel so amazingly overwhelming thrilled for my wedding What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i feel so amazingly overwhelming thrilled for my wedding What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.68it/s] 100%|██████████| 10/10 [00:00<00:00, 17.46it/s]
--- Text 1071 --- Text: 'i feel shame in a strange way' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i feel shame in a strange way What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is shame. Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel shame in a strange way What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel shame in a strange way Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.55it/s]
--- Text 1072 --- Text: 'i suspect much of the country feels after the tragic events of last week' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i suspect much of the country feels after the tragic events of last week What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i suspect much of the country feels after the tragic events of last week What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.71it/s]
--- Text 1073 --- Text: 'i feel like that because for the most part i have accepted that this is a part of my life and that people will never changed' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel like that because for the most part i have accepted that this is a part of my life and that people will never changed What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like that because for the most part i have accepted that this is a part of my life and that people will never changed What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.33it/s] 40%|████ | 4/10 [00:00<00:00, 12.02it/s]
--- Text 1074 --- Text: 'i find it relaxes me and i feel productive making food as the end product should taste nice and will satisfy myself and other people' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i find it relaxes me and i feel productive making food as the end product should taste nice and will satisfy myself and other people What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i find it relaxes me and i feel productive making food as the end product should taste nice and will satisfy myself and other people What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.26it/s] 50%|█████ | 5/10 [00:00<00:00, 12.93it/s]
--- Text 1075 --- Text: 'i feel that sometimes i ve been distracted and neglectful i am thankful that this is not about adding another box to check in my otherwise busy days' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel that sometimes i ve been distracted and neglectful i am thankful that this is not about adding another box to check in my otherwise busy days What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is gratitude Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel that sometimes i ve been distracted and neglectful i am thankful that this is not about adding another box to check in my otherwise busy days What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.16it/s]
--- Text 1076 --- Text: 'i feel about these individuals but that opening line shows how inadequate simple words can be' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel about these individuals but that opening line shows how inadequate simple words can be What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel about these individuals but that opening line shows how inadequate simple words can be What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.01it/s]
--- Text 1077 --- Text: 'ive been too deep down in the swamps swimming in muddy waters tortured by fear feeling lonely and lost' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: ive been too deep down in the swamps swimming in muddy waters tortured by fear feeling lonely and lost What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: ive been too deep down in the swamps swimming in muddy waters tortured by fear feeling lonely and lost What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fear Predicted Emotion: fear --------------------
100%|██████████| 10/10 [00:00<00:00, 17.48it/s] 40%|████ | 4/10 [00:00<00:00, 12.69it/s]
--- Text 1078 --- Text: 'i didn t feel talented at anything i was doing and eventually wasn t putting fully into it' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i didn t feel talented at anything i was doing and eventually wasn t putting fully into it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is likely sad Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i didn t feel talented at anything i was doing and eventually wasn t putting fully into it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.63it/s]
--- Text 1079 --- Text: 'i read her blog is that i feel that shes one person who doesnt care how people look at her and believes in being herself no matter how bitchy annoying or self centered that may seem to people' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i read her blog is that i feel that shes one person who doesnt care how people look at her and believes in being herself no matter how bitchy annoying or self centered that may seem to people What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i read her blog is that i feel that shes one person who doesnt care how people look at her and believes in being herself no matter how bitchy annoying or self centered that may seem to people What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.93it/s]
--- Text 1080 --- Text: 'i am sat here feeling mightily distracted and not wanting to write the next scene of my nano just yet rape torture bad stuff' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i am sat here feeling mightily distracted and not wanting to write the next scene of my nano just yet rape torture bad stuff What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am sat here feeling mightily distracted and not wanting to write the next scene of my nano just yet rape torture bad stuff What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fear Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.69it/s]
--- Text 1081 --- Text: 'i came across something which made me feel lousy' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i came across something which made me feel lousy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i came across something which made me feel lousy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.43it/s]
--- Text 1082 --- Text: 'i love rides but wasnt feeling too hot this day' True Emotion: love --- Zero-Shot Prompting --- Prompt: i love rides but wasnt feeling too hot this day What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i love rides but wasnt feeling too hot this day What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.33it/s]
--- Text 1083 --- Text: 'i feel bothered by any of these things i open a door' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel bothered by any of these things i open a door What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel bothered by any of these things i open a door What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.46it/s] 40%|████ | 4/10 [00:00<00:00, 12.69it/s]
--- Text 1084 --- Text: 'i found myself feeling nostalgic as i thought about the temporarily abandoned little bishop chronicles' True Emotion: love --- Zero-Shot Prompting --- Prompt: i found myself feeling nostalgic as i thought about the temporarily abandoned little bishop chronicles What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is nostalg Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i found myself feeling nostalgic as i thought about the temporarily abandoned little bishop chronicles What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: nostalgia. Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.82it/s]
--- Text 1085 --- Text: 'i forgive myself that i have accepted and allowed myself to think that as i am writing this blog that someone will feel sorry for me give me some sympathy and tell me i am right' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i forgive myself that i have accepted and allowed myself to think that as i am writing this blog that someone will feel sorry for me give me some sympathy and tell me i am right What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i forgive myself that i have accepted and allowed myself to think that as i am writing this blog that someone will feel sorry for me give me some sympathy and tell me i am right What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.82it/s]
--- Text 1086 --- Text: 'i feel irritable about the number of people that came into our office whining about their own circumstances i realize im not practicing thinking about the good things and i find it a better way to pull yourself into the present' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel irritable about the number of people that came into our office whining about their own circumstances i realize im not practicing thinking about the good things and i find it a better way to pull yourself into the present What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel irritable about the number of people that came into our office whining about their own circumstances i realize im not practicing thinking about the good things and i find it a better way to pull yourself into the present What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: irritability Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.93it/s]
--- Text 1087 --- Text: 'i am only too well aware of the strength of feeling that this house holds about the tragic and needless deaths of so many men women and children' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i am only too well aware of the strength of feeling that this house holds about the tragic and needless deaths of so many men women and children What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am only too well aware of the strength of feeling that this house holds about the tragic and needless deaths of so many men women and children What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.95it/s]
--- Text 1088 --- Text: 'i feel for all of you who have been supporting me is so extreme there would be no way to put a number value on it' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel for all of you who have been supporting me is so extreme there would be no way to put a number value on it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel for all of you who have been supporting me is so extreme there would be no way to put a number value on it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.16it/s]
--- Text 1089 --- Text: 'i feel such duties are unimportant to our profession i just am not qualified to discuss all of them' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel such duties are unimportant to our profession i just am not qualified to discuss all of them What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel such duties are unimportant to our profession i just am not qualified to discuss all of them What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel such duties are unimportant to Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.57it/s]
--- Text 1090 --- Text: 'i do feel proud and happy and also very grateful to all who read me' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i do feel proud and happy and also very grateful to all who read me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i do feel proud and happy and also very grateful to all who read me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Gratitude Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.56it/s]
--- Text 1091 --- Text: 'i feel shaky from the battering of emotions but im still standing' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel shaky from the battering of emotions but im still standing What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel shaky from the battering of emotions but im still standing What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.34it/s]
--- Text 1092 --- Text: 'i feel like being all stubborn and stingy' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel like being all stubborn and stingy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like being all stubborn and stingy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: stubborn Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.77it/s]
--- Text 1093 --- Text: 'i been that i feel like i can traipse in and out of all your lives tromping on your heel loving hearts with my stilettos' True Emotion: love --- Zero-Shot Prompting --- Prompt: i been that i feel like i can traipse in and out of all your lives tromping on your heel loving hearts with my stilettos What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i been that i feel like i can traipse in and out of all your lives tromping on your heel loving hearts with my stilettos What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 16.54it/s] 50%|█████ | 5/10 [00:00<00:00, 12.84it/s]
--- Text 1094 --- Text: 'i reread for comfort the familiarity of a book whose plot i already know is easier to deal with when im feeling stressed than a new to me book with all its unknowns' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i reread for comfort the familiarity of a book whose plot i already know is easier to deal with when im feeling stressed than a new to me book with all its unknowns What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is comfort. Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i reread for comfort the familiarity of a book whose plot i already know is easier to deal with when im feeling stressed than a new to me book with all its unknowns What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.55it/s]
--- Text 1095 --- Text: 'i love it but sometimes i feel exhausted' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i love it but sometimes i feel exhausted What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i love it but sometimes i feel exhausted What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.42it/s]
--- Text 1096 --- Text: 'im sorry i feel so uncertain about it' True Emotion: fear --- Zero-Shot Prompting --- Prompt: im sorry i feel so uncertain about it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im sorry i feel so uncertain about it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Uncertainty Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.34it/s]
--- Text 1097 --- Text: 'im feeling crappy ill fish for compliments like any other girl' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im feeling crappy ill fish for compliments like any other girl What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling crappy ill fish for compliments like any other girl What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.05it/s] 20%|██ | 2/10 [00:00<00:00, 9.18it/s]
--- Text 1098 --- Text: 'i am asleep i would feel no pain but that violent act would be completely unjustified all the same' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i am asleep i would feel no pain but that violent act would be completely unjustified all the same What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i am asleep i would feel no pain but that violent act would be completely unjustified all the same What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.21it/s]
--- Text 1099 --- Text: 'i feel burdened and stuck in the center of a dark tunnel' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel burdened and stuck in the center of a dark tunnel What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel burdened and stuck in the center of a dark tunnel What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.32it/s]
--- Text 1100 --- Text: 'i know their feelings are very real and not petty but neither are mine here' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i know their feelings are very real and not petty but neither are mine here What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i know their feelings are very real and not petty but neither are mine here What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.44it/s] 40%|████ | 4/10 [00:00<00:00, 11.87it/s]
--- Text 1101 --- Text: 'i would look up at the sky scrapers and feel amazed that this little girl from montana was there' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i would look up at the sky scrapers and feel amazed that this little girl from montana was there What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: amaz Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i would look up at the sky scrapers and feel amazed that this little girl from montana was there What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Surprise Predicted Emotion: surprise --------------------
100%|██████████| 10/10 [00:00<00:00, 17.75it/s] 40%|████ | 4/10 [00:00<00:00, 12.72it/s]
--- Text 1102 --- Text: 'i don t want to i feel irritated' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i don t want to i feel irritated What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is irrit Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i don t want to i feel irritated What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: irritation. Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.55it/s]
--- Text 1103 --- Text: 'i feel like i look like a miserable heap' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like i look like a miserable heap What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like i look like a miserable heap What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.56it/s]
--- Text 1104 --- Text: 'i really feel like i am useless in this world' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i really feel like i am useless in this world What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i really feel like i am useless in this world What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.88it/s]
--- Text 1105 --- Text: 'im definitely not feeling fearful or anything right now' True Emotion: fear --- Zero-Shot Prompting --- Prompt: im definitely not feeling fearful or anything right now What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im definitely not feeling fearful or anything right now What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I am definitely not feeling fearful or Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.74it/s] 40%|████ | 4/10 [00:00<00:00, 12.58it/s]
--- Text 1106 --- Text: 'im now on day two of the plan and im feeling positive' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im now on day two of the plan and im feeling positive What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is JO Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im now on day two of the plan and im feeling positive What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.06it/s]
--- Text 1107 --- Text: 'im feeling really terrible about it because my journaling has also come to a screeching halt as well' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im feeling really terrible about it because my journaling has also come to a screeching halt as well What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling really terrible about it because my journaling has also come to a screeching halt as well What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.49it/s] 40%|████ | 4/10 [00:00<00:00, 12.69it/s]
--- Text 1108 --- Text: 'i feel as if today was a positive gift delivered to us teachers on a very stressful week' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel as if today was a positive gift delivered to us teachers on a very stressful week What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i feel as if today was a positive gift delivered to us teachers on a very stressful week What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.58it/s]
--- Text 1109 --- Text: 'i have been feeling shaky this morning after taking them as well' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i have been feeling shaky this morning after taking them as well What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have been feeling shaky this morning after taking them as well What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.81it/s] 30%|███ | 3/10 [00:00<00:00, 10.91it/s]
--- Text 1110 --- Text: 'i feel like they rushed the relationship' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel like they rushed the relationship What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel like they rushed the relationship What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.86it/s]
--- Text 1111 --- Text: 'i maintain that these feelings should be repressed not expressed' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i maintain that these feelings should be repressed not expressed What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i maintain that these feelings should be repressed not expressed What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Repression is the act of pushing something Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.59it/s] 40%|████ | 4/10 [00:00<00:00, 11.23it/s]
--- Text 1112 --- Text: 'i have found myself overwhelmed with jealousy and self contempt and i have found myself feeling this towards the lives of my sweet friends and acquaintances as portrayed on social media' True Emotion: love --- Zero-Shot Prompting --- Prompt: i have found myself overwhelmed with jealousy and self contempt and i have found myself feeling this towards the lives of my sweet friends and acquaintances as portrayed on social media What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have found myself overwhelmed with jealousy and self contempt and i have found myself feeling this towards the lives of my sweet friends and acquaintances as portrayed on social media What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: jealousy. Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.67it/s]
--- Text 1113 --- Text: 'i feel last time ure the one that feel paranoid' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel last time ure the one that feel paranoid What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel last time ure the one that feel paranoid What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear Predicted Emotion: fear --------------------
100%|██████████| 10/10 [00:00<00:00, 17.45it/s] 100%|██████████| 10/10 [00:00<00:00, 17.10it/s]
--- Text 1114 --- Text: 'i know how it feels to be tortured' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i know how it feels to be tortured What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i know how it feels to be tortured What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: i know how it feels to be tort Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.70it/s]
--- Text 1115 --- Text: 'i will tell you that i am feeling quite invigorated' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i will tell you that i am feeling quite invigorated What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i will tell you that i am feeling quite invigorated What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.38it/s]
--- Text 1116 --- Text: 'i vented my feelings towards the pathetic excuse of a communicat' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i vented my feelings towards the pathetic excuse of a communicat What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i vented my feelings towards the pathetic excuse of a communicat What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.36it/s]
--- Text 1117 --- Text: 'i fancied the terrains there and feel keen to go there again' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i fancied the terrains there and feel keen to go there again What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i fancied the terrains there and feel keen to go there again What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.38it/s]
--- Text 1118 --- Text: 'i feel your prescence a gentle touch' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel your prescence a gentle touch What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel your prescence a gentle touch What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.39it/s]
--- Text 1119 --- Text: 'i am still feeling a bit dull from the loss of sleep and am trying to sleep in each morning as possible' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i am still feeling a bit dull from the loss of sleep and am trying to sleep in each morning as possible What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am still feeling a bit dull from the loss of sleep and am trying to sleep in each morning as possible What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.12it/s] 50%|█████ | 5/10 [00:00<00:00, 13.57it/s]
--- Text 1120 --- Text: 'i would feel so i don t know maybe a little resentful' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i would feel so i don t know maybe a little resentful What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i would feel so i don t know maybe a little resentful What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: resentful Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.99it/s] 50%|█████ | 5/10 [00:00<00:00, 12.89it/s]
--- Text 1121 --- Text: 'i first started using this i did not like it because i felt like it made my hair feel very dirty even though i had just washed my hair' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i first started using this i did not like it because i felt like it made my hair feel very dirty even though i had just washed my hair What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i first started using this i did not like it because i felt like it made my hair feel very dirty even though i had just washed my hair What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.36it/s]
--- Text 1122 --- Text: 'i look at their situation and feel so so jealous that i almost cant bear it' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i look at their situation and feel so so jealous that i almost cant bear it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i look at their situation and feel so so jealous that i almost cant bear it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: jealousy Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.84it/s]
--- Text 1123 --- Text: 'i am feeling triumphant today' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am feeling triumphant today What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling triumphant today What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: triumphant Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.91it/s]
--- Text 1124 --- Text: 'i feel like the writer wants me to think so and proclaiming he no longer liked pulsars is a petty and hilarious bit of character' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel like the writer wants me to think so and proclaiming he no longer liked pulsars is a petty and hilarious bit of character What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like the writer wants me to think so and proclaiming he no longer liked pulsars is a petty and hilarious bit of character What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.46it/s] 50%|█████ | 5/10 [00:00<00:00, 13.37it/s]
--- Text 1125 --- Text: 'im feeling sentimental or in need of reassurance' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im feeling sentimental or in need of reassurance What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The text is feeling sentimental or in need Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling sentimental or in need of reassurance What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.68it/s]
--- Text 1126 --- Text: 'ive ever read that explains why i feel this way all the time and reassures me that im not just defective somehow' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: ive ever read that explains why i feel this way all the time and reassures me that im not just defective somehow What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: ive ever read that explains why i feel this way all the time and reassures me that im not just defective somehow What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.51it/s]
--- Text 1127 --- Text: 'i come in contact on a regular basis and the sooner i can figure out how to be kind to them in all situations the sooner they will feel valued appreciated loved and the desire to learn how to pass that kindness on to others as i am learning to do' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i come in contact on a regular basis and the sooner i can figure out how to be kind to them in all situations the sooner they will feel valued appreciated loved and the desire to learn how to pass that kindness on to others as i am learning to do What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i come in contact on a regular basis and the sooner i can figure out how to be kind to them in all situations the sooner they will feel valued appreciated loved and the desire to learn how to pass that kindness on to others as i am learning to do What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.28it/s] 50%|█████ | 5/10 [00:00<00:00, 12.95it/s]
--- Text 1128 --- Text: 'i tried adding in any other type of cheese and we re talking small quantities i was right back to feeling shitty' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i tried adding in any other type of cheese and we re talking small quantities i was right back to feeling shitty What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i tried adding in any other type of cheese and we re talking small quantities i was right back to feeling shitty What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.94it/s]
--- Text 1129 --- Text: 'i seem to share an equal passion for long distance touring and harley davidsons so i feel sure wed bore to tears every person within earshot' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i seem to share an equal passion for long distance touring and harley davidsons so i feel sure wed bore to tears every person within earshot What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i seem to share an equal passion for long distance touring and harley davidsons so i feel sure wed bore to tears every person within earshot What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Boredom Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.34it/s] 100%|██████████| 10/10 [00:00<00:00, 16.29it/s]
--- Text 1130 --- Text: 'i don t know if it s mostly because he s forcing himself to be distracted or if he s feeling more determined or what but i think that though he s still hurting he is learning to cope with it kame takes a breath' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i don t know if it s mostly because he s forcing himself to be distracted or if he s feeling more determined or what but i think that though he s still hurting he is learning to cope with it kame takes a breath What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i don t know if it s mostly because he s forcing himself to be distracted or if he s feeling more determined or what but i think that though he s still hurting he is learning to cope with it kame takes a breath What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: The emotion of this text is: sad Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.33it/s] 20%|██ | 2/10 [00:00<00:00, 9.27it/s]
--- Text 1131 --- Text: 'i help my daughter when she is feeling angry' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i help my daughter when she is feeling angry What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: My daughter is feeling angry and I want to Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i help my daughter when she is feeling angry What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger. Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.26it/s]
--- Text 1132 --- Text: 'i feel terrible when i hurt peoples feelings worse afterwards and i always hope never to do it again' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel terrible when i hurt peoples feelings worse afterwards and i always hope never to do it again What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel terrible when i hurt peoples feelings worse afterwards and i always hope never to do it again What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.74it/s]
--- Text 1133 --- Text: 'i feel a little glamorous i wet the brush' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel a little glamorous i wet the brush What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel a little glamorous i wet the brush What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.65it/s]
--- Text 1134 --- Text: 'i just feel you so so dont be afraid and pray again i need you go back in time forgive my sins so so sloth' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i just feel you so so dont be afraid and pray again i need you go back in time forgive my sins so so sloth What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i just feel you so so dont be afraid and pray again i need you go back in time forgive my sins so so sloth What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.10it/s]
--- Text 1135 --- Text: 'i grew up feeling ugly and inadequate' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i grew up feeling ugly and inadequate What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i grew up feeling ugly and inadequate What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.35it/s] 60%|██████ | 6/10 [00:00<00:00, 13.42it/s]
--- Text 1136 --- Text: 'i feel such a sense of accomplishment after being embarrassed by these clothes and prepared to either donate them to a charity or throw them out' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel such a sense of accomplishment after being embarrassed by these clothes and prepared to either donate them to a charity or throw them out What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel such a sense of accomplishment after being embarrassed by these clothes and prepared to either donate them to a charity or throw them out What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: accomplishment Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.56it/s]
--- Text 1137 --- Text: 'i don t think we re to that point yet and i foresee a lot of traffic between my bed and the crib until he is old enough to no longer feel that i am the only acceptable answer in the dark' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i don t think we re to that point yet and i foresee a lot of traffic between my bed and the crib until he is old enough to no longer feel that i am the only acceptable answer in the dark What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i don t think we re to that point yet and i foresee a lot of traffic between my bed and the crib until he is old enough to no longer feel that i am the only acceptable answer in the dark What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.82it/s]
--- Text 1138 --- Text: 'i know that i feel awful when i ask my husband to watch audrey just long enough for me to take a shower' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i know that i feel awful when i ask my husband to watch audrey just long enough for me to take a shower What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i know that i feel awful when i ask my husband to watch audrey just long enough for me to take a shower What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.15it/s] 50%|█████ | 5/10 [00:00<00:00, 13.34it/s]
--- Text 1139 --- Text: 'i hate myself to feel so bothered by the word team the word badminton' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i hate myself to feel so bothered by the word team the word badminton What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion in this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i hate myself to feel so bothered by the word team the word badminton What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: bothered Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.71it/s]
--- Text 1140 --- Text: 'i could empathize with tab because of raging hormones and the connection feeling like someone else gets you thinks youre smart pretty worth attention' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i could empathize with tab because of raging hormones and the connection feeling like someone else gets you thinks youre smart pretty worth attention What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i could empathize with tab because of raging hormones and the connection feeling like someone else gets you thinks youre smart pretty worth attention What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.17it/s]
--- Text 1141 --- Text: 'i feel so totally invigorated that i completely forget what it s like to have a cold' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel so totally invigorated that i completely forget what it s like to have a cold What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so totally invigorated that i completely forget what it s like to have a cold What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.11it/s]
--- Text 1142 --- Text: 'i wont give you too much in case you feel greedy' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i wont give you too much in case you feel greedy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i wont give you too much in case you feel greedy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I won't give you too much Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.50it/s]
--- Text 1143 --- Text: 'i tell you that i love you and my feelings are sincere my dear' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i tell you that i love you and my feelings are sincere my dear What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i tell you that i love you and my feelings are sincere my dear What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.34it/s] 50%|█████ | 5/10 [00:00<00:00, 13.57it/s]
--- Text 1144 --- Text: 'i feel the pain in my vein its oh so vain am i insane' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel the pain in my vein its oh so vain am i insane What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel the pain in my vein its oh so vain am i insane What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.24it/s] 20%|██ | 2/10 [00:00<00:00, 9.57it/s]
--- Text 1145 --- Text: 'i feel that i worry too much and much on petty things like' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel that i worry too much and much on petty things like What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i feel that i worry too much and much on petty things like What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: worry. Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.40it/s]
--- Text 1146 --- Text: 'i wanted to thank them all for giving jordan and myself the chance to be together without any distraction and making us feel so welcomed and loved' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i wanted to thank them all for giving jordan and myself the chance to be together without any distraction and making us feel so welcomed and loved What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i wanted to thank them all for giving jordan and myself the chance to be together without any distraction and making us feel so welcomed and loved What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.45it/s] 50%|█████ | 5/10 [00:00<00:00, 13.57it/s]
--- Text 1147 --- Text: 'i feel affirmed gracious sensuous and will have less self doubt when a href http generations' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel affirmed gracious sensuous and will have less self doubt when a href http generations What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel affirmed gracious sensuous and will have less self doubt when a href http generations What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: affirmed Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.80it/s]
--- Text 1148 --- Text: 'i have spent of my waking hours enjoying the freedom of not owning a cellphone feeling smug about it in situations in which a phone would have been awfully convenient and fielding incredulous questions' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i have spent of my waking hours enjoying the freedom of not owning a cellphone feeling smug about it in situations in which a phone would have been awfully convenient and fielding incredulous questions What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have spent of my waking hours enjoying the freedom of not owning a cellphone feeling smug about it in situations in which a phone would have been awfully convenient and fielding incredulous questions What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: smugness Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.30it/s] 40%|████ | 4/10 [00:00<00:00, 12.03it/s]
--- Text 1149 --- Text: 'i don t like feeling like an eager schoolboy waiting around for hours just to touch the shining alumninium' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i don t like feeling like an eager schoolboy waiting around for hours just to touch the shining alumninium What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i don t like feeling like an eager schoolboy waiting around for hours just to touch the shining alumninium What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Waiting Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.73it/s]
--- Text 1150 --- Text: 'i feel so greedy so needy so helpless' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel so greedy so needy so helpless What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so greedy so needy so helpless What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: needy Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.93it/s] 100%|██████████| 10/10 [00:00<00:00, 17.13it/s]
--- Text 1151 --- Text: 'when i heard the last regulation of the socialist govrenment concerning pensions' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: when i heard the last regulation of the socialist govrenment concerning pensions What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is likely anger Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: when i heard the last regulation of the socialist govrenment concerning pensions What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: When i heard the last regulation of Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.84it/s]
--- Text 1152 --- Text: 'i feel so awful she said' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel so awful she said What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so awful she said What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.74it/s] 40%|████ | 4/10 [00:00<00:00, 12.48it/s]
--- Text 1153 --- Text: 'i have finally cast my studio show and it feels fab' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i have finally cast my studio show and it feels fab What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i have finally cast my studio show and it feels fab What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.68it/s] 50%|█████ | 5/10 [00:00<00:00, 13.80it/s]
--- Text 1154 --- Text: 'i feel extremely gloomy and confused' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel extremely gloomy and confused What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel extremely gloomy and confused What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.73it/s]
--- Text 1155 --- Text: 'i feel that passionate about' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel that passionate about What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel that passionate about What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.52it/s]
--- Text 1156 --- Text: 'i feel worthless and pointless and i feel like everyones third wheel not even second' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel worthless and pointless and i feel like everyones third wheel not even second What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel worthless and pointless and i feel like everyones third wheel not even second What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.89it/s]
--- Text 1157 --- Text: 'i felt this emotion when my name was announced on the radio that i had been selected to come to lilongwe school for health sciences to take a training course as a medical assistat' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i felt this emotion when my name was announced on the radio that i had been selected to come to lilongwe school for health sciences to take a training course as a medical assistat What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i felt this emotion when my name was announced on the radio that i had been selected to come to lilongwe school for health sciences to take a training course as a medical assistat What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.28it/s] 50%|█████ | 5/10 [00:00<00:00, 12.65it/s]
--- Text 1158 --- Text: 'i was feeling superior to women who left their alcoholic husbands i was stronger and more godly and wasnt ever going to do that' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i was feeling superior to women who left their alcoholic husbands i was stronger and more godly and wasnt ever going to do that What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i was feeling superior to women who left their alcoholic husbands i was stronger and more godly and wasnt ever going to do that What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.14it/s]
--- Text 1159 --- Text: 'i really feel for the women who have to work with these obnoxious cretins' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i really feel for the women who have to work with these obnoxious cretins What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i really feel for the women who have to work with these obnoxious cretins What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.63it/s]
--- Text 1160 --- Text: 'i didnt have to drink as much last time as people who get ultrasounds at weeks or before do but it was still enough that i was feeling distinctly eager for the toilet by the end' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i didnt have to drink as much last time as people who get ultrasounds at weeks or before do but it was still enough that i was feeling distinctly eager for the toilet by the end What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i didnt have to drink as much last time as people who get ultrasounds at weeks or before do but it was still enough that i was feeling distinctly eager for the toilet by the end What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Eager Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.26it/s] 40%|████ | 4/10 [00:00<00:00, 12.03it/s]
--- Text 1161 --- Text: 'i feel it is perfectly acceptable to consume homemade chex party mix for breakfast during the holidays given the fact that it is mostly cereal' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel it is perfectly acceptable to consume homemade chex party mix for breakfast during the holidays given the fact that it is mostly cereal What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel it is perfectly acceptable to consume homemade chex party mix for breakfast during the holidays given the fact that it is mostly cereal What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.81it/s] 30%|███ | 3/10 [00:00<00:00, 10.96it/s]
--- Text 1162 --- Text: 'i feel like they don t think it s sincere when it really is she told us exclusively' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like they don t think it s sincere when it really is she told us exclusively What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i feel like they don t think it s sincere when it really is she told us exclusively What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 11.57it/s]
--- Text 1163 --- Text: 'i would always have this song stuck in my head after a bombing or incident and then i would feel a bit weird about it because if you dont really pay attention to the lyrics it sounds like such a happy song not the type youre supposed to hum on difficult days' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i would always have this song stuck in my head after a bombing or incident and then i would feel a bit weird about it because if you dont really pay attention to the lyrics it sounds like such a happy song not the type youre supposed to hum on difficult days What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i would always have this song stuck in my head after a bombing or incident and then i would feel a bit weird about it because if you dont really pay attention to the lyrics it sounds like such a happy song not the type youre supposed to hum on difficult days What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.99it/s] 100%|██████████| 10/10 [00:00<00:00, 17.26it/s]
--- Text 1164 --- Text: 'i feel my comments or opinion are sincere but some people get the wrong message' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel my comments or opinion are sincere but some people get the wrong message What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel my comments or opinion are sincere but some people get the wrong message What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel my comments or opinion are s Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.69it/s]
--- Text 1165 --- Text: 'im sorry im feeling a little bitchy tacky looking women came in and sat next to me' True Emotion: anger --- Zero-Shot Prompting --- Prompt: im sorry im feeling a little bitchy tacky looking women came in and sat next to me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im sorry im feeling a little bitchy tacky looking women came in and sat next to me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Bitchy Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.07it/s] 30%|███ | 3/10 [00:00<00:00, 10.33it/s]
--- Text 1166 --- Text: 'i feel like charmed gave me the means to spend those few years when my sons were very young at home with them' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like charmed gave me the means to spend those few years when my sons were very young at home with them What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i feel like charmed gave me the means to spend those few years when my sons were very young at home with them What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.43it/s] 60%|██████ | 6/10 [00:00<00:00, 13.62it/s]
--- Text 1167 --- Text: 'im really happy but i just feel exhausted' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im really happy but i just feel exhausted What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is happiness. Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im really happy but i just feel exhausted What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Exhaustion Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.65it/s]
--- Text 1168 --- Text: 'i feel a kind of dull grief over it' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel a kind of dull grief over it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel a kind of dull grief over it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: grief Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.57it/s]
--- Text 1169 --- Text: 'i feel particularly uncomfortable with how much a driver is looking down on the phone i shout eyes on the prize' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel particularly uncomfortable with how much a driver is looking down on the phone i shout eyes on the prize What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel particularly uncomfortable with how much a driver is looking down on the phone i shout eyes on the prize What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.30it/s]
--- Text 1170 --- Text: 'ive left the orange scented mixture white but feel free to color it if you wish' True Emotion: joy --- Zero-Shot Prompting --- Prompt: ive left the orange scented mixture white but feel free to color it if you wish What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: ive left the orange scented mixture white but feel free to color it if you wish What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: ive left the orange scented mixture white Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.90it/s]
--- Text 1171 --- Text: 'i always appreciate them and please feel free to become a follower and come back and visit again soon' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i always appreciate them and please feel free to become a follower and come back and visit again soon What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i always appreciate them and please feel free to become a follower and come back and visit again soon What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 16.66it/s] 50%|█████ | 5/10 [00:00<00:00, 13.25it/s]
--- Text 1172 --- Text: 'i left feeling satisfied that donna knew what she was doing and i was in capable hands' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i left feeling satisfied that donna knew what she was doing and i was in capable hands What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: satisfaction Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i left feeling satisfied that donna knew what she was doing and i was in capable hands What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Satisfaction Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.41it/s]
--- Text 1173 --- Text: 'i started feeling uncomfortable around my straight male friends particularly after one of them drunkenly came on to me grabbing at my waist while he attempted to murmur sweet nothings in my ear at a party that same week' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i started feeling uncomfortable around my straight male friends particularly after one of them drunkenly came on to me grabbing at my waist while he attempted to murmur sweet nothings in my ear at a party that same week What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i started feeling uncomfortable around my straight male friends particularly after one of them drunkenly came on to me grabbing at my waist while he attempted to murmur sweet nothings in my ear at a party that same week What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 60%|██████ | 6/10 [00:00<00:00, 13.87it/s]
--- Text 1174 --- Text: 'i feel uncomfortable here' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel uncomfortable here What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel uncomfortable here What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: uncomfortable Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.55it/s]
--- Text 1175 --- Text: 'i could have done more but i was feeling a pleasant tiredness and had a good sweat going so i stopped at that' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i could have done more but i was feeling a pleasant tiredness and had a good sweat going so i stopped at that What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i could have done more but i was feeling a pleasant tiredness and had a good sweat going so i stopped at that What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I could have done more but I was Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.28it/s]
--- Text 1176 --- Text: 'i don t feel the least bit unwelcome in my party and my views are not uncommon' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i don t feel the least bit unwelcome in my party and my views are not uncommon What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i don t feel the least bit unwelcome in my party and my views are not uncommon What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: NONE OF THE ABOVE Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.42it/s]
--- Text 1177 --- Text: 'i feel like im super rich kinda like when i could drink goldschlager haha' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like im super rich kinda like when i could drink goldschlager haha What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like im super rich kinda like when i could drink goldschlager haha What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.84it/s] 40%|████ | 4/10 [00:00<00:00, 12.25it/s]
--- Text 1178 --- Text: 'i feel its rude to say he is better than all the other men' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel its rude to say he is better than all the other men What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i feel its rude to say he is better than all the other men What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.36it/s] 40%|████ | 4/10 [00:00<00:00, 12.29it/s]
--- Text 1179 --- Text: 'i feel accepted because of my condition' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel accepted because of my condition What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: accept Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel accepted because of my condition What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: acceptance Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.53it/s] 40%|████ | 4/10 [00:00<00:00, 12.72it/s]
--- Text 1180 --- Text: 'i didn t and still don t feel lucky though' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i didn t and still don t feel lucky though What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i didn t and still don t feel lucky though What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.74it/s]
--- Text 1181 --- Text: 'i managed to re learn feeling insecure again' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i managed to re learn feeling insecure again What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i managed to re learn feeling insecure again What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: insecurity Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 11.56it/s]
--- Text 1182 --- Text: 'i mean the idea is intoxicating of course and it feels amazing when its happening but what happens in the morning when you wake up and you have to go to work and so amp so is all up in your shit about something that is completely impractical' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i mean the idea is intoxicating of course and it feels amazing when its happening but what happens in the morning when you wake up and you have to go to work and so amp so is all up in your shit about something that is completely impractical What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i mean the idea is intoxicating of course and it feels amazing when its happening but what happens in the morning when you wake up and you have to go to work and so amp so is all up in your shit about something that is completely impractical What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.29it/s]
--- Text 1183 --- Text: 'i am on so many social networks right now and sometimes i feel like that i am pretty talked out' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am on so many social networks right now and sometimes i feel like that i am pretty talked out What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am on so many social networks right now and sometimes i feel like that i am pretty talked out What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.56it/s] 50%|█████ | 5/10 [00:00<00:00, 12.82it/s]
--- Text 1184 --- Text: 'i feel like i should have some sort of rockstar razzle dazzle lifestyle but i would at least like to spend a third of my life doing something i feel is worthwhile' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like i should have some sort of rockstar razzle dazzle lifestyle but i would at least like to spend a third of my life doing something i feel is worthwhile What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like i should have some sort of rockstar razzle dazzle lifestyle but i would at least like to spend a third of my life doing something i feel is worthwhile What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.25it/s]
--- Text 1185 --- Text: 'i feel agitated a lot im straddling articulacy and incoherence' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel agitated a lot im straddling articulacy and incoherence What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel agitated a lot im straddling articulacy and incoherence What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Articulacy Incoher Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.04it/s]
--- Text 1186 --- Text: 'i start to feel a little overwhelmed knowing i have to make still' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i start to feel a little overwhelmed knowing i have to make still What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i start to feel a little overwhelmed knowing i have to make still What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I start to feel a little overwh Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.93it/s] 40%|████ | 4/10 [00:00<00:00, 12.26it/s]
--- Text 1187 --- Text: 'i don t know about you but sometimes i feel that the world is troubled deeply pathologically troubled' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i don t know about you but sometimes i feel that the world is troubled deeply pathologically troubled What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i don t know about you but sometimes i feel that the world is troubled deeply pathologically troubled What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.41it/s] 30%|███ | 3/10 [00:00<00:00, 10.52it/s]
--- Text 1188 --- Text: 'i feel like they bring the characters to life completely and i m always kind of surprised what the actors do do together' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i feel like they bring the characters to life completely and i m always kind of surprised what the actors do do together What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is surprise. Predicted Emotion: surprise --- Constraint-Based Prompting --- Prompt: i feel like they bring the characters to life completely and i m always kind of surprised what the actors do do together What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Surprise Predicted Emotion: surprise --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.72it/s]
--- Text 1189 --- Text: 'i felt confused me sometimes that makes me feel useless' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i felt confused me sometimes that makes me feel useless What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i felt confused me sometimes that makes me feel useless What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.27it/s] 50%|█████ | 5/10 [00:00<00:00, 12.70it/s]
--- Text 1190 --- Text: 'i am left feeling heartbroken about losing that child and then guilty because my parenting and wife ing has been so far below par for the last months' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i am left feeling heartbroken about losing that child and then guilty because my parenting and wife ing has been so far below par for the last months What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i am left feeling heartbroken about losing that child and then guilty because my parenting and wife ing has been so far below par for the last months What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.22it/s] 20%|██ | 2/10 [00:00<00:00, 9.32it/s]
--- Text 1191 --- Text: 'i noticed that i was feeling very stressed and anxious and i just couldnt quite put my finger on why' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i noticed that i was feeling very stressed and anxious and i just couldnt quite put my finger on why What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i noticed that i was feeling very stressed and anxious and i just couldnt quite put my finger on why What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: stress. Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.50it/s] 30%|███ | 3/10 [00:00<00:00, 11.40it/s]
--- Text 1192 --- Text: 'i never been feel this ashame this humiliated in life' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i never been feel this ashame this humiliated in life What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is shame. Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i never been feel this ashame this humiliated in life What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: ashamed Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.54it/s] 40%|████ | 4/10 [00:00<00:00, 11.88it/s]
--- Text 1193 --- Text: 'i exist for does my existence even mean anything to anyone apart from my family i always wonder about my existence and the fuck now i feel so dumb ive never thought about the purpose of it' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i exist for does my existence even mean anything to anyone apart from my family i always wonder about my existence and the fuck now i feel so dumb ive never thought about the purpose of it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i exist for does my existence even mean anything to anyone apart from my family i always wonder about my existence and the fuck now i feel so dumb ive never thought about the purpose of it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.95it/s]
--- Text 1194 --- Text: 'i start working full time next week where i m currently at and i m feeling a bit ungrateful at the moment' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i start working full time next week where i m currently at and i m feeling a bit ungrateful at the moment What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i start working full time next week where i m currently at and i m feeling a bit ungrateful at the moment What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.90it/s]
--- Text 1195 --- Text: 'i have learned how much more like a neighbourhood this place feels the humans with dogs have been very sympathetic and understand my quixotic need to walk a dog to walk period' True Emotion: love --- Zero-Shot Prompting --- Prompt: i have learned how much more like a neighbourhood this place feels the humans with dogs have been very sympathetic and understand my quixotic need to walk a dog to walk period What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have learned how much more like a neighbourhood this place feels the humans with dogs have been very sympathetic and understand my quixotic need to walk a dog to walk period What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.51it/s] 100%|██████████| 10/10 [00:00<00:00, 17.29it/s]
--- Text 1196 --- Text: 'i remain hopeful that the feeling i have is actually excitement a long missed friend' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i remain hopeful that the feeling i have is actually excitement a long missed friend What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is hope. Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i remain hopeful that the feeling i have is actually excitement a long missed friend What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I remain hopeful that the feeling I Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.29it/s] 20%|██ | 2/10 [00:00<00:00, 8.81it/s]
--- Text 1197 --- Text: 'i want to be healthy and happy so badly that the fact that i am healing and without my leg is making me feel useless not empty' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i want to be healthy and happy so badly that the fact that i am healing and without my leg is making me feel useless not empty What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i want to be healthy and happy so badly that the fact that i am healing and without my leg is making me feel useless not empty What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.82it/s]
--- Text 1198 --- Text: 'i got off the phone feeling numb' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i got off the phone feeling numb What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i got off the phone feeling numb What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.93it/s]
--- Text 1199 --- Text: 'i was also feeling the ole restless leg syndrome as i shifted back and forth between legs trying to do something with my excess energy that just hit me' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i was also feeling the ole restless leg syndrome as i shifted back and forth between legs trying to do something with my excess energy that just hit me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was also feeling the ole restless leg syndrome as i shifted back and forth between legs trying to do something with my excess energy that just hit me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.75it/s] 100%|██████████| 10/10 [00:00<00:00, 17.30it/s]
--- Text 1200 --- Text: 'i feel much lighter clearer and more energetic' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel much lighter clearer and more energetic What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: joy Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i feel much lighter clearer and more energetic What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel much lighter, clearer, Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.91it/s] 30%|███ | 3/10 [00:00<00:00, 11.15it/s]
--- Text 1201 --- Text: 'i feel heartless even though my heart hurts' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel heartless even though my heart hurts What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel heartless even though my heart hurts What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness. Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.64it/s]
--- Text 1202 --- Text: 'i feel like my efforts are all in vain and continuing to pursue them will only embarrass me down the road' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like my efforts are all in vain and continuing to pursue them will only embarrass me down the road What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like my efforts are all in vain and continuing to pursue them will only embarrass me down the road What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 11.19it/s]
--- Text 1203 --- Text: 'i started feeling a little funny but this was not anxiety but at the time i didnt know so i started to tell my brother man i dont feel good and he said whats wrong i said i dont know but u better drive so i pulled over and let him drive' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i started feeling a little funny but this was not anxiety but at the time i didnt know so i started to tell my brother man i dont feel good and he said whats wrong i said i dont know but u better drive so i pulled over and let him drive What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i started feeling a little funny but this was not anxiety but at the time i didnt know so i started to tell my brother man i dont feel good and he said whats wrong i said i dont know but u better drive so i pulled over and let him drive What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.37it/s]
--- Text 1204 --- Text: 'i feel so much boring with my straight hair for all over years haha' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel so much boring with my straight hair for all over years haha What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so much boring with my straight hair for all over years haha What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: boredom Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.50it/s]
--- Text 1205 --- Text: 'i feel rotten but no amount of suggesting that losing a sense of smell is a terribly disorientating experience for a wine person seems to convince people that i might not actually live to feel good again' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel rotten but no amount of suggesting that losing a sense of smell is a terribly disorientating experience for a wine person seems to convince people that i might not actually live to feel good again What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel rotten but no amount of suggesting that losing a sense of smell is a terribly disorientating experience for a wine person seems to convince people that i might not actually live to feel good again What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.70it/s]
--- Text 1206 --- Text: 'i got home and told peter how i was feeling he wasnt shocked at all by what i was telling him' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i got home and told peter how i was feeling he wasnt shocked at all by what i was telling him What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i got home and told peter how i was feeling he wasnt shocked at all by what i was telling him What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Surprise Predicted Emotion: surprise --------------------
100%|██████████| 10/10 [00:00<00:00, 16.23it/s] 30%|███ | 3/10 [00:00<00:00, 10.96it/s]
--- Text 1207 --- Text: 'ive come to feel about a supporting character in one of my all time favorite films giant' True Emotion: joy --- Zero-Shot Prompting --- Prompt: ive come to feel about a supporting character in one of my all time favorite films giant What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: ive come to feel about a supporting character in one of my all time favorite films giant What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.68it/s]
--- Text 1208 --- Text: 'i could almost feel her gentle touch in the moonbeam she sent to shine over me he added touching his face dreamily' True Emotion: love --- Zero-Shot Prompting --- Prompt: i could almost feel her gentle touch in the moonbeam she sent to shine over me he added touching his face dreamily What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i could almost feel her gentle touch in the moonbeam she sent to shine over me he added touching his face dreamily What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 15.88it/s]
--- Text 1209 --- Text: 'i either have to feel submissive and as such agree to taking pain for someone or there has to not be an option presented' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i either have to feel submissive and as such agree to taking pain for someone or there has to not be an option presented What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i either have to feel submissive and as such agree to taking pain for someone or there has to not be an option presented What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I either have to feel submissive Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.25it/s]
--- Text 1210 --- Text: 'i was really struggling to run with the discomfort i was feeling but was determined to continue as the crowds on the bridge are massive and i didnt want to be one of the first people they saw walking or stopping' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i was really struggling to run with the discomfort i was feeling but was determined to continue as the crowds on the bridge are massive and i didnt want to be one of the first people they saw walking or stopping What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was really struggling to run with the discomfort i was feeling but was determined to continue as the crowds on the bridge are massive and i didnt want to be one of the first people they saw walking or stopping What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.49it/s] 30%|███ | 3/10 [00:00<00:00, 10.68it/s]
--- Text 1211 --- Text: 'i feel like this beats out just about any popular high end foundation on the market at either ulta or sephora' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like this beats out just about any popular high end foundation on the market at either ulta or sephora What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: love Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i feel like this beats out just about any popular high end foundation on the market at either ulta or sephora What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.88it/s]
--- Text 1212 --- Text: 'i just was expressing myself and her unexpected and kind gesture made me feel bad for a short moment as that was not my intent but for a larger moment which remains with me it reminded me of my blessings like having good friends that have your back' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i just was expressing myself and her unexpected and kind gesture made me feel bad for a short moment as that was not my intent but for a larger moment which remains with me it reminded me of my blessings like having good friends that have your back What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i just was expressing myself and her unexpected and kind gesture made me feel bad for a short moment as that was not my intent but for a larger moment which remains with me it reminded me of my blessings like having good friends that have your back What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.83it/s]
--- Text 1213 --- Text: 'i hated that i have to work everyday with no days off for the next two weeks i dont like my jobs and i feel unsuccessful when i talk to other people about them' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i hated that i have to work everyday with no days off for the next two weeks i dont like my jobs and i feel unsuccessful when i talk to other people about them What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i hated that i have to work everyday with no days off for the next two weeks i dont like my jobs and i feel unsuccessful when i talk to other people about them What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.78it/s]
--- Text 1214 --- Text: 'i have to keep fighting for my life until i truly run out of fight and i ve been close enough to that twice to know a bit about what it feels like and we re not there yet no matter how despairing all this feels' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i have to keep fighting for my life until i truly run out of fight and i ve been close enough to that twice to know a bit about what it feels like and we re not there yet no matter how despairing all this feels What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have to keep fighting for my life until i truly run out of fight and i ve been close enough to that twice to know a bit about what it feels like and we re not there yet no matter how despairing all this feels What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.84it/s]
--- Text 1215 --- Text: 'i just feel troubled' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i just feel troubled What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i just feel troubled What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.04it/s] 30%|███ | 3/10 [00:00<00:00, 10.69it/s]
--- Text 1216 --- Text: 'i like doing reviews and i got this from target a few days ago so i feel its acceptable to review this for all you makeup lovers' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i like doing reviews and i got this from target a few days ago so i feel its acceptable to review this for all you makeup lovers What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i like doing reviews and i got this from target a few days ago so i feel its acceptable to review this for all you makeup lovers What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.26it/s] 50%|█████ | 5/10 [00:00<00:00, 12.94it/s]
--- Text 1217 --- Text: 'i feel like i have devoted myself to doing what i can to reduce my impact on the environment she wrote in her blog babsbrisbane' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel like i have devoted myself to doing what i can to reduce my impact on the environment she wrote in her blog babsbrisbane What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like i have devoted myself to doing what i can to reduce my impact on the environment she wrote in her blog babsbrisbane What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.81it/s]
--- Text 1218 --- Text: 'i feel quite pleased with these little bits of news so i will celebrate tonight with a meet the brewer event hawkshead with some of my members in one of my newest pubs' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel quite pleased with these little bits of news so i will celebrate tonight with a meet the brewer event hawkshead with some of my members in one of my newest pubs What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel quite pleased with these little bits of news so i will celebrate tonight with a meet the brewer event hawkshead with some of my members in one of my newest pubs What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.48it/s] 40%|████ | 4/10 [00:00<00:00, 12.68it/s]
--- Text 1219 --- Text: 'i woke up i feel thankful to god for giving me another day to go on' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i woke up i feel thankful to god for giving me another day to go on What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i woke up i feel thankful to god for giving me another day to go on What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.69it/s]
--- Text 1220 --- Text: 'i feel like it is so important for me to publicly bless my virus' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like it is so important for me to publicly bless my virus What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like it is so important for me to publicly bless my virus What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.81it/s]
--- Text 1221 --- Text: 'i feel thrilled that by the end of the month this round will be completed and i can begin to recover' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel thrilled that by the end of the month this round will be completed and i can begin to recover What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel thrilled that by the end of the month this round will be completed and i can begin to recover What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 8.62it/s]
--- Text 1222 --- Text: 'i wish there were more times when she just needed me to hold her and rock her to sleep because those are the moments when i feel most successful as father those times when im able to meet all of her needs just by being there for her' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i wish there were more times when she just needed me to hold her and rock her to sleep because those are the moments when i feel most successful as father those times when im able to meet all of her needs just by being there for her What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i wish there were more times when she just needed me to hold her and rock her to sleep because those are the moments when i feel most successful as father those times when im able to meet all of her needs just by being there for her What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.50it/s]
--- Text 1223 --- Text: 'im really not taking in information lately it could explain why ive been feeling sort of discontent lately' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im really not taking in information lately it could explain why ive been feeling sort of discontent lately What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im really not taking in information lately it could explain why ive been feeling sort of discontent lately What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Discontent Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.73it/s] 30%|███ | 3/10 [00:00<00:00, 10.59it/s]
--- Text 1224 --- Text: 'i exactly feel whenever i feel lonely or depressed and then i pray to him for help and guidance a href http' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i exactly feel whenever i feel lonely or depressed and then i pray to him for help and guidance a href http What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i exactly feel whenever i feel lonely or depressed and then i pray to him for help and guidance a href http What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.06it/s] 40%|████ | 4/10 [00:00<00:00, 11.84it/s]
--- Text 1225 --- Text: 'i must say i don t consider my family broken nor do i feel any discontent about not having a father around' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i must say i don t consider my family broken nor do i feel any discontent about not having a father around What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i must say i don t consider my family broken nor do i feel any discontent about not having a father around What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 90%|█████████ | 9/10 [00:00<00:00, 15.57it/s]
--- Text 1226 --- Text: 'im feeling a little dirty' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im feeling a little dirty What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling a little dirty What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I'm feeling a little dirty Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.73it/s]
--- Text 1227 --- Text: 'i feel so relieved and happy to realize what is being said' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel so relieved and happy to realize what is being said What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so relieved and happy to realize what is being said What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel so relieved and happy to Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.23it/s] 40%|████ | 4/10 [00:00<00:00, 10.58it/s]
--- Text 1228 --- Text: 'i mean is that when we are true to ourselves and our style and we see a reflection we like in the mirror all of the ugliness in society that is there to make us feel ugly or inadequate based on our looks suddenly becomes completely annulled' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i mean is that when we are true to ourselves and our style and we see a reflection we like in the mirror all of the ugliness in society that is there to make us feel ugly or inadequate based on our looks suddenly becomes completely annulled What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i mean is that when we are true to ourselves and our style and we see a reflection we like in the mirror all of the ugliness in society that is there to make us feel ugly or inadequate based on our looks suddenly becomes completely annulled What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.47it/s]
--- Text 1229 --- Text: 'i do not feel assured' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i do not feel assured What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i do not feel assured What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I do not feel assured Please Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.69it/s]
--- Text 1230 --- Text: 'i feel i m handling it well and i m enjoying it he said' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel i m handling it well and i m enjoying it he said What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel i m handling it well and i m enjoying it he said What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.61it/s]
--- Text 1231 --- Text: 'im not feeling the jolly this year though' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im not feeling the jolly this year though What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im not feeling the jolly this year though What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.70it/s]
--- Text 1232 --- Text: 'i feel special excitement and happiness' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel special excitement and happiness What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel special excitement and happiness What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.73it/s] 40%|████ | 4/10 [00:00<00:00, 12.38it/s]
--- Text 1233 --- Text: 'i reckon you need to stop feeling bitter and be realistic' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i reckon you need to stop feeling bitter and be realistic What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i reckon you need to stop feeling bitter and be realistic What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: bitter Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.31it/s] 30%|███ | 3/10 [00:00<00:00, 11.33it/s]
--- Text 1234 --- Text: 'i got a great pump and halfway through the workout i started to feel fantastic' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i got a great pump and halfway through the workout i started to feel fantastic What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i got a great pump and halfway through the workout i started to feel fantastic What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.89it/s]
--- Text 1235 --- Text: 'i stay the more distanced from others i feel it is strange because i sometimes feel like a new friendship is growing or forming' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i stay the more distanced from others i feel it is strange because i sometimes feel like a new friendship is growing or forming What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i stay the more distanced from others i feel it is strange because i sometimes feel like a new friendship is growing or forming What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.30it/s] 100%|██████████| 10/10 [00:00<00:00, 16.54it/s]
--- Text 1236 --- Text: 'i leave something sometimes i throw some change in the tip jar other times i dont leave anything but i feel rude doing that haha' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i leave something sometimes i throw some change in the tip jar other times i dont leave anything but i feel rude doing that haha What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i leave something sometimes i throw some change in the tip jar other times i dont leave anything but i feel rude doing that haha What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Haha, I'm glad you Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.62it/s]
--- Text 1237 --- Text: 'im far ahead than the released tankouban that are sold here it just wont be the same anymore and the wait wont be as thrilling but damn me if i even feel slightly remorseful for that' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im far ahead than the released tankouban that are sold here it just wont be the same anymore and the wait wont be as thrilling but damn me if i even feel slightly remorseful for that What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im far ahead than the released tankouban that are sold here it just wont be the same anymore and the wait wont be as thrilling but damn me if i even feel slightly remorseful for that What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.94it/s]
--- Text 1238 --- Text: 'i get paid too much because i get so many deliveries at work im feeling a bit shamed so will curb the spending for a bit' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i get paid too much because i get so many deliveries at work im feeling a bit shamed so will curb the spending for a bit What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i get paid too much because i get so many deliveries at work im feeling a bit shamed so will curb the spending for a bit What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.80it/s]
--- Text 1239 --- Text: 'i feel bad knocking show down this far but i didnt see smackdown this week and i cant just assume he carried the show like he does every week daniel bryan doesnt appear on it' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel bad knocking show down this far but i didnt see smackdown this week and i cant just assume he carried the show like he does every week daniel bryan doesnt appear on it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel bad knocking show down this far but i didnt see smackdown this week and i cant just assume he carried the show like he does every week daniel bryan doesnt appear on it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.48it/s]
--- Text 1240 --- Text: 'i feel happy about the outcome of this long election and im glad its over' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel happy about the outcome of this long election and im glad its over What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel happy about the outcome of this long election and im glad its over What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.47it/s]
--- Text 1241 --- Text: 'i just feel like im going no where and that the period of time where i was so very much enthralled with life and the options it proposed is now over' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i just feel like im going no where and that the period of time where i was so very much enthralled with life and the options it proposed is now over What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i just feel like im going no where and that the period of time where i was so very much enthralled with life and the options it proposed is now over What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.83it/s]
--- Text 1242 --- Text: 'i could maybe get away with simpler folk melodies on some of the songs something fairly predictable but if its just me and a guitar it would end up feeling dull' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i could maybe get away with simpler folk melodies on some of the songs something fairly predictable but if its just me and a guitar it would end up feeling dull What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i could maybe get away with simpler folk melodies on some of the songs something fairly predictable but if its just me and a guitar it would end up feeling dull What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.50it/s] 20%|██ | 2/10 [00:00<00:00, 9.54it/s]
--- Text 1243 --- Text: 'i dont like christmas because i feel like it has lost its meaning' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i dont like christmas because i feel like it has lost its meaning What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i dont like christmas because i feel like it has lost its meaning What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.49it/s]
--- Text 1244 --- Text: 'i feel less alone' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel less alone What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel less alone What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: The emotion of this text is: love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.29it/s] 20%|██ | 2/10 [00:00<00:00, 8.81it/s]
--- Text 1245 --- Text: 'i feel they are one of the most talented teams in the nfl but for some reason people feel like there s nothing to really fear against them' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel they are one of the most talented teams in the nfl but for some reason people feel like there s nothing to really fear against them What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i feel they are one of the most talented teams in the nfl but for some reason people feel like there s nothing to really fear against them What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear. Predicted Emotion: fear --------------------
100%|██████████| 10/10 [00:00<00:00, 17.36it/s] 100%|██████████| 10/10 [00:00<00:00, 17.27it/s]
--- Text 1246 --- Text: 'i feel the hearts decision to stop caring can it be reversed' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel the hearts decision to stop caring can it be reversed What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel the hearts decision to stop caring can it be reversed What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness The text describes a person Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.68it/s]
--- Text 1247 --- Text: 'i have a feeling itll be a little more messy going home though' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i have a feeling itll be a little more messy going home though What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have a feeling itll be a little more messy going home though What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.67it/s]
--- Text 1248 --- Text: 'i feel welcomed into the barn like a son coming home' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel welcomed into the barn like a son coming home What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel welcomed into the barn like a son coming home What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.27it/s] 100%|██████████| 10/10 [00:00<00:00, 16.75it/s]
--- Text 1249 --- Text: 'i wish i had the right language to convey the simultaneous feelings of excitement peaceful enjoyment of country cycling but also being out of my element' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i wish i had the right language to convey the simultaneous feelings of excitement peaceful enjoyment of country cycling but also being out of my element What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i wish i had the right language to convey the simultaneous feelings of excitement peaceful enjoyment of country cycling but also being out of my element What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I wish I had the right language to Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.74it/s] 30%|███ | 3/10 [00:00<00:00, 11.40it/s]
--- Text 1250 --- Text: 'i feel there is no excuse for lame invitations' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel there is no excuse for lame invitations What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i feel there is no excuse for lame invitations What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Lame Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.50it/s] 50%|█████ | 5/10 [00:00<00:00, 13.56it/s]
--- Text 1251 --- Text: 'i did feel for him as its horrible and expensive when it happens' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i did feel for him as its horrible and expensive when it happens What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i did feel for him as its horrible and expensive when it happens What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.76it/s]
--- Text 1252 --- Text: 'i also got some very nice condiment type pressies whilst at our local garden centre today so i am feeling that i have achieved something towards the festive season' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i also got some very nice condiment type pressies whilst at our local garden centre today so i am feeling that i have achieved something towards the festive season What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i also got some very nice condiment type pressies whilst at our local garden centre today so i am feeling that i have achieved something towards the festive season What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.04it/s]
--- Text 1253 --- Text: 'i am waking up in the middle of the night again with aches and pains and generally feeling grumpy' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i am waking up in the middle of the night again with aches and pains and generally feeling grumpy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am waking up in the middle of the night again with aches and pains and generally feeling grumpy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: grumpiness Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.84it/s] 50%|█████ | 5/10 [00:00<00:00, 12.71it/s]
--- Text 1254 --- Text: 'i don t feel betrayed coz the backstabber had no grounds for their accusation but i m just amazed at some people s ability to do such things' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i don t feel betrayed coz the backstabber had no grounds for their accusation but i m just amazed at some people s ability to do such things What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i don t feel betrayed coz the backstabber had no grounds for their accusation but i m just amazed at some people s ability to do such things What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.36it/s] 40%|████ | 4/10 [00:00<00:00, 11.83it/s]
--- Text 1255 --- Text: 'i first started reading city of dark magic i thought it would be a challenge to actually enjoy it since i felt like the content about famous classical music was over my head but luckily after plowing through the first chapter i became more confident and started feeling less dumb' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i first started reading city of dark magic i thought it would be a challenge to actually enjoy it since i felt like the content about famous classical music was over my head but luckily after plowing through the first chapter i became more confident and started feeling less dumb What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is confidence. Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i first started reading city of dark magic i thought it would be a challenge to actually enjoy it since i felt like the content about famous classical music was over my head but luckily after plowing through the first chapter i became more confident and started feeling less dumb What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.58it/s]
--- Text 1256 --- Text: 'im not constantly horny or always feeling playful' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im not constantly horny or always feeling playful What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im not constantly horny or always feeling playful What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.50it/s] 40%|████ | 4/10 [00:00<00:00, 12.91it/s]
--- Text 1257 --- Text: 'i feel more shy in swedish' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel more shy in swedish What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: I feel more shy in Swedish. Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel more shy in swedish What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: shyness. Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.66it/s]
--- Text 1258 --- Text: 'ill let myself shed a few tears and feel bitter confused frustrated and hurt for the last time' True Emotion: anger --- Zero-Shot Prompting --- Prompt: ill let myself shed a few tears and feel bitter confused frustrated and hurt for the last time What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: ill let myself shed a few tears and feel bitter confused frustrated and hurt for the last time What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.38it/s]
--- Text 1259 --- Text: 'i encourage you next time youre feeling a little uncomfortable do your best to embrace it' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i encourage you next time youre feeling a little uncomfortable do your best to embrace it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i encourage you next time youre feeling a little uncomfortable do your best to embrace it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I encourage you next time you' Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.59it/s] 60%|██████ | 6/10 [00:00<00:00, 14.27it/s]
--- Text 1260 --- Text: 'i feel useless a href http juliemadblogger' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel useless a href http juliemadblogger What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel useless a href http juliemadblogger What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel useless. Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.30it/s] 100%|██████████| 10/10 [00:00<00:00, 16.28it/s]
--- Text 1261 --- Text: 'i feel like the crows and roosters will be teamed up with the horses and go against the bulls sharks and other monsters that are trying to take over of cool ranch' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like the crows and roosters will be teamed up with the horses and go against the bulls sharks and other monsters that are trying to take over of cool ranch What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i feel like the crows and roosters will be teamed up with the horses and go against the bulls sharks and other monsters that are trying to take over of cool ranch What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: The text describes a situation where the c Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 8.50it/s]
--- Text 1262 --- Text: 'i am not scared to let myself feel deeply many people are too frightened to let themselves div style clearboth padding bottom' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i am not scared to let myself feel deeply many people are too frightened to let themselves div style clearboth padding bottom What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am not scared to let myself feel deeply many people are too frightened to let themselves div style clearboth padding bottom What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.18it/s] 40%|████ | 4/10 [00:00<00:00, 12.71it/s]
--- Text 1263 --- Text: 'i still feel too chub to wear the cute summer clothes i had dreamed of' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i still feel too chub to wear the cute summer clothes i had dreamed of What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is likely sad Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i still feel too chub to wear the cute summer clothes i had dreamed of What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.07it/s] 50%|█████ | 5/10 [00:00<00:00, 12.63it/s]
--- Text 1264 --- Text: 'i feel rotten my feet still swell up and after i eat i feel bad and the more i eat i feel bad' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel rotten my feet still swell up and after i eat i feel bad and the more i eat i feel bad What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel rotten my feet still swell up and after i eat i feel bad and the more i eat i feel bad What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.73it/s] 100%|██████████| 10/10 [00:00<00:00, 17.04it/s]
--- Text 1265 --- Text: 'i feel it is acceptable as this is not everyday food' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel it is acceptable as this is not everyday food What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel it is acceptable as this is not everyday food What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel it is acceptable as this is Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 0%| | 0/10 [00:00<?, ?it/s]
--- Text 1266 --- Text: 'i was lucky enough to feel and squeeze myself to a win in another festive challenge which involved a box full of items that we had to identify by blindly fondling through a hole' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i was lucky enough to feel and squeeze myself to a win in another festive challenge which involved a box full of items that we had to identify by blindly fondling through a hole What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was lucky enough to feel and squeeze myself to a win in another festive challenge which involved a box full of items that we had to identify by blindly fondling through a hole What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.50it/s]
--- Text 1267 --- Text: 'im feeling very uncertain about my future' True Emotion: fear --- Zero-Shot Prompting --- Prompt: im feeling very uncertain about my future What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling very uncertain about my future What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Uncertainty Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.06it/s] 40%|████ | 4/10 [00:00<00:00, 12.03it/s]
--- Text 1268 --- Text: 'i feel like i m not pretty smart interesting enough for my boyfriend and that he would feel more stimulated or happy with someone else' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like i m not pretty smart interesting enough for my boyfriend and that he would feel more stimulated or happy with someone else What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel like i m not pretty smart interesting enough for my boyfriend and that he would feel more stimulated or happy with someone else What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.78it/s] 100%|██████████| 10/10 [00:00<00:00, 17.04it/s]
--- Text 1269 --- Text: 'i feel is that the most likeable characters aren t important enough to the plot' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel is that the most likeable characters aren t important enough to the plot What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel is that the most likeable characters aren t important enough to the plot What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: The most likeable characters aren't Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.55it/s] 40%|████ | 4/10 [00:00<00:00, 12.68it/s]
--- Text 1270 --- Text: 'i like in this world and making a list of them always makes me feel joyful' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i like in this world and making a list of them always makes me feel joyful What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i like in this world and making a list of them always makes me feel joyful What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.96it/s]
--- Text 1271 --- Text: 'i feel very saddened that the king whom i once quite respected as far as monarchs go was ineffectual at best' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel very saddened that the king whom i once quite respected as far as monarchs go was ineffectual at best What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel very saddened that the king whom i once quite respected as far as monarchs go was ineffectual at best What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 80%|████████ | 8/10 [00:00<00:00, 15.39it/s]
--- Text 1272 --- Text: 'i feel more energetic' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel more energetic What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel more energetic What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel more energetic Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.05it/s]
--- Text 1273 --- Text: 'i feel very honored in how much he has shared and expressed with me and that he trusts me' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel very honored in how much he has shared and expressed with me and that he trusts me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel very honored in how much he has shared and expressed with me and that he trusts me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.37it/s]
--- Text 1274 --- Text: 'i feel this strange sort of liberation' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i feel this strange sort of liberation What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel this strange sort of liberation What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: liberation Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.48it/s] 50%|█████ | 5/10 [00:00<00:00, 13.30it/s]
--- Text 1275 --- Text: 'i just feel that if i end our marriage he deserves a truthful explanation' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i just feel that if i end our marriage he deserves a truthful explanation What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i just feel that if i end our marriage he deserves a truthful explanation What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.66it/s]
--- Text 1276 --- Text: 'i feel so weird and scattered with all wonders about a million different things' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i feel so weird and scattered with all wonders about a million different things What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so weird and scattered with all wonders about a million different things What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Surprise Predicted Emotion: surprise --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.41it/s]
--- Text 1277 --- Text: 'i feel as though most people will find it quite pleasant' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel as though most people will find it quite pleasant What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel as though most people will find it quite pleasant What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.91it/s]
--- Text 1278 --- Text: 'i believe that with our minds focused on the daily rat race our bodies simply forget how to feel vital and free a classic case of you lose what you dont use' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i believe that with our minds focused on the daily rat race our bodies simply forget how to feel vital and free a classic case of you lose what you dont use What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i believe that with our minds focused on the daily rat race our bodies simply forget how to feel vital and free a classic case of you lose what you dont use What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 60%|██████ | 6/10 [00:00<00:00, 14.18it/s]
--- Text 1279 --- Text: 'i still wake up feeling suspicious' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i still wake up feeling suspicious What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i still wake up feeling suspicious What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: suspicion Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.54it/s]
--- Text 1280 --- Text: 'i feel a little hesitant to leave this time' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel a little hesitant to leave this time What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel a little hesitant to leave this time What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: hesitance Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.94it/s]
--- Text 1281 --- Text: 'i typed up all my blood pressures for the month but i have a feeling hes not going to be too pleased with the lack of missing information' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i typed up all my blood pressures for the month but i have a feeling hes not going to be too pleased with the lack of missing information What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i typed up all my blood pressures for the month but i have a feeling hes not going to be too pleased with the lack of missing information What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.28it/s] 50%|█████ | 5/10 [00:00<00:00, 12.63it/s]
--- Text 1282 --- Text: 'i feel so disgusted when i see blood and feel like faiting and also when people eat raw meat in front of me' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel so disgusted when i see blood and feel like faiting and also when people eat raw meat in front of me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is disg Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so disgusted when i see blood and feel like faiting and also when people eat raw meat in front of me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Disgust Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.24it/s]
--- Text 1283 --- Text: 'im always feeling so agitated overly excited and impatient to those who are close to me' True Emotion: anger --- Zero-Shot Prompting --- Prompt: im always feeling so agitated overly excited and impatient to those who are close to me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im always feeling so agitated overly excited and impatient to those who are close to me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Overall, the text describes a state Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.42it/s]
--- Text 1284 --- Text: 'i am now feeling delighted but daunted' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am now feeling delighted but daunted What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am now feeling delighted but daunted What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: delighted. Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.44it/s]
--- Text 1285 --- Text: 'i feel ashamed to type all this' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel ashamed to type all this What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel ashamed to type all this What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel ashamed to type all this Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.72it/s]
--- Text 1286 --- Text: 'i just notice what i am doing that is ruining my happy moment because this feelingof discontent is my resistance to receiving love in the genuine way its being delivered' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i just notice what i am doing that is ruining my happy moment because this feelingof discontent is my resistance to receiving love in the genuine way its being delivered What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i just notice what i am doing that is ruining my happy moment because this feelingof discontent is my resistance to receiving love in the genuine way its being delivered What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 16.31it/s] 50%|█████ | 5/10 [00:00<00:00, 12.83it/s]
--- Text 1287 --- Text: 'i admire her and feel like even though shes gorgeous and talented she hasnt succumbed to the hollywood pressures like a lot of a listers have' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i admire her and feel like even though shes gorgeous and talented she hasnt succumbed to the hollywood pressures like a lot of a listers have What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is admiration Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i admire her and feel like even though shes gorgeous and talented she hasnt succumbed to the hollywood pressures like a lot of a listers have What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Admiration Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.42it/s] 40%|████ | 4/10 [00:00<00:00, 11.86it/s]
--- Text 1288 --- Text: 'i don t have a schedule or childhood friends and feel a little timid about just getting out there by myself' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i don t have a schedule or childhood friends and feel a little timid about just getting out there by myself What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i don t have a schedule or childhood friends and feel a little timid about just getting out there by myself What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fear Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.56it/s]
--- Text 1289 --- Text: 'i feel empty inside not surprising considering i havent eaten all day' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel empty inside not surprising considering i havent eaten all day What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel empty inside not surprising considering i havent eaten all day What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.18it/s]
--- Text 1290 --- Text: 'at a party i met a girl who drew me to her' True Emotion: anger --- Zero-Shot Prompting --- Prompt: at a party i met a girl who drew me to her What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: at a party i met a girl who drew me to her What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.70it/s]
--- Text 1291 --- Text: 'i always make things harder which im not going to lie i sometimes have a way of complicating the very simple however a new baby is a pretty big undertaking and from this comment and many many others i feel like he sees himself as being disturbed very little' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i always make things harder which im not going to lie i sometimes have a way of complicating the very simple however a new baby is a pretty big undertaking and from this comment and many many others i feel like he sees himself as being disturbed very little What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i always make things harder which im not going to lie i sometimes have a way of complicating the very simple however a new baby is a pretty big undertaking and from this comment and many many others i feel like he sees himself as being disturbed very little What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.02it/s]
--- Text 1292 --- Text: 'i have a feeling that its too sociable' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i have a feeling that its too sociable What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have a feeling that its too sociable What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I have a feeling that it's Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 60%|██████ | 6/10 [00:00<00:00, 14.29it/s]
--- Text 1293 --- Text: 'i do feel discouraged by what my supervisor said' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i do feel discouraged by what my supervisor said What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i do feel discouraged by what my supervisor said What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: discouraged Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.33it/s]
--- Text 1294 --- Text: 'i was sitting in class feeling somehow disturbed' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i was sitting in class feeling somehow disturbed What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was sitting in class feeling somehow disturbed What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.89it/s]
--- Text 1295 --- Text: 'i continue to write this i feel more and more distraught' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i continue to write this i feel more and more distraught What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i continue to write this i feel more and more distraught What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.66it/s] 50%|█████ | 5/10 [00:00<00:00, 13.43it/s]
--- Text 1296 --- Text: 'i start to feel lethargic about blogging' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i start to feel lethargic about blogging What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion in this text is leth Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i start to feel lethargic about blogging What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.21it/s] 50%|█████ | 5/10 [00:00<00:00, 13.25it/s]
--- Text 1297 --- Text: 'i that it feels like she is being tortured' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i that it feels like she is being tortured What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i that it feels like she is being tortured What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.06it/s] 40%|████ | 4/10 [00:00<00:00, 11.34it/s]
--- Text 1298 --- Text: 'i was wasting my life away going out with one person after another to find love feeling shitty and anti social about my polytechnic life i met this guy' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i was wasting my life away going out with one person after another to find love feeling shitty and anti social about my polytechnic life i met this guy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i was wasting my life away going out with one person after another to find love feeling shitty and anti social about my polytechnic life i met this guy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 16.42it/s] 50%|█████ | 5/10 [00:00<00:00, 12.68it/s]
--- Text 1299 --- Text: 'i get of oz is the occassional viewings of home and away and even a bit of neighbours if im feeling really tragic' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i get of oz is the occassional viewings of home and away and even a bit of neighbours if im feeling really tragic What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is likely to Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i get of oz is the occassional viewings of home and away and even a bit of neighbours if im feeling really tragic What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.08it/s] 20%|██ | 2/10 [00:00<00:00, 8.76it/s]
--- Text 1300 --- Text: 'i thought i would grumpily curse the world and remain angry about oh i don t even really know sometimes it feels like i m angry about absolutely everything' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i thought i would grumpily curse the world and remain angry about oh i don t even really know sometimes it feels like i m angry about absolutely everything What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i thought i would grumpily curse the world and remain angry about oh i don t even really know sometimes it feels like i m angry about absolutely everything What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
100%|██████████| 10/10 [00:00<00:00, 16.92it/s] 20%|██ | 2/10 [00:00<00:00, 9.53it/s]
--- Text 1301 --- Text: 'im not condoning terrorist action but you feel so furious and powerless' True Emotion: anger --- Zero-Shot Prompting --- Prompt: im not condoning terrorist action but you feel so furious and powerless What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: im not condoning terrorist action but you feel so furious and powerless What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
100%|██████████| 10/10 [00:00<00:00, 16.75it/s] 40%|████ | 4/10 [00:00<00:00, 11.88it/s]
--- Text 1302 --- Text: 'i just finished watching a korean drama secret garden omg and am feeling the way girls do after such shows a mixture of hope and a little tug of truth that says those romantic gestures only exist in films' True Emotion: love --- Zero-Shot Prompting --- Prompt: i just finished watching a korean drama secret garden omg and am feeling the way girls do after such shows a mixture of hope and a little tug of truth that says those romantic gestures only exist in films What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i just finished watching a korean drama secret garden omg and am feeling the way girls do after such shows a mixture of hope and a little tug of truth that says those romantic gestures only exist in films What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.50it/s] 40%|████ | 4/10 [00:00<00:00, 12.72it/s]
--- Text 1303 --- Text: 'i am feeling stronger recharged and excited to get back into my runs' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am feeling stronger recharged and excited to get back into my runs What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is JO Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling stronger recharged and excited to get back into my runs What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.04it/s] 40%|████ | 4/10 [00:00<00:00, 11.90it/s]
--- Text 1304 --- Text: 'i do think that if a husband feels greatly respected by his wife that will draw him to her and make it much less likely that he would want to flirt with other women' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i do think that if a husband feels greatly respected by his wife that will draw him to her and make it much less likely that he would want to flirt with other women What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i do think that if a husband feels greatly respected by his wife that will draw him to her and make it much less likely that he would want to flirt with other women What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.30it/s]
--- Text 1305 --- Text: 'im feeling very disturbed by tons of things' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im feeling very disturbed by tons of things What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling very disturbed by tons of things What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.59it/s] 30%|███ | 3/10 [00:00<00:00, 11.36it/s]
--- Text 1306 --- Text: 'i do feel apprehensive and nervous at times about how i am performing with my modules' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i do feel apprehensive and nervous at times about how i am performing with my modules What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i do feel apprehensive and nervous at times about how i am performing with my modules What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fear Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.69it/s]
--- Text 1307 --- Text: 'i feel a bit dazed but so excited i am going to be so protective she is not going to be let out until she is' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i feel a bit dazed but so excited i am going to be so protective she is not going to be let out until she is What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel a bit dazed but so excited i am going to be so protective she is not going to be let out until she is What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Excitement Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.38it/s]
--- Text 1308 --- Text: 'im gestating one and feeling pretty thrilled about that' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im gestating one and feeling pretty thrilled about that What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im gestating one and feeling pretty thrilled about that What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.37it/s] 50%|█████ | 5/10 [00:00<00:00, 11.53it/s]
--- Text 1309 --- Text: 'i know it can take weeks for a book to go free on amazon and barnes amp noble and in this age where cents can buy a full length ebook i feel a little funny charging even cents for a work that is almost certain to be under pages possibly under' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i know it can take weeks for a book to go free on amazon and barnes amp noble and in this age where cents can buy a full length ebook i feel a little funny charging even cents for a work that is almost certain to be under pages possibly under What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i know it can take weeks for a book to go free on amazon and barnes amp noble and in this age where cents can buy a full length ebook i feel a little funny charging even cents for a work that is almost certain to be under pages possibly under What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.39it/s]
--- Text 1310 --- Text: 'i feel terrific in every one of them' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel terrific in every one of them What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel terrific in every one of them What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.47it/s]
--- Text 1311 --- Text: 'i aspire to capture the manner in which i feel this tension is resolved and why austere and introspective training still has a place alongside study of the method at euskc' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i aspire to capture the manner in which i feel this tension is resolved and why austere and introspective training still has a place alongside study of the method at euskc What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i aspire to capture the manner in which i feel this tension is resolved and why austere and introspective training still has a place alongside study of the method at euskc What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: A) Joy B) Sad Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.28it/s] 30%|███ | 3/10 [00:00<00:00, 10.37it/s]
--- Text 1312 --- Text: 'i had a ton of fun at the thrift store and i feel like i got some really useful pieces and i can get in on current trends for cheap' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i had a ton of fun at the thrift store and i feel like i got some really useful pieces and i can get in on current trends for cheap What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i had a ton of fun at the thrift store and i feel like i got some really useful pieces and i can get in on current trends for cheap What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.72it/s]
--- Text 1313 --- Text: 'i find myself feeling anxious and unsure' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i find myself feeling anxious and unsure What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i find myself feeling anxious and unsure What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anxiety Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 8.52it/s]
--- Text 1314 --- Text: 'i honestly wish christmas was celebrated in the summer because i feel like i tend not be as jolly as i wish i could be' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i honestly wish christmas was celebrated in the summer because i feel like i tend not be as jolly as i wish i could be What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i honestly wish christmas was celebrated in the summer because i feel like i tend not be as jolly as i wish i could be What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.61it/s]
--- Text 1315 --- Text: 'ive blogged and i feel strange about it' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: ive blogged and i feel strange about it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: ive blogged and i feel strange about it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.29it/s] 20%|██ | 2/10 [00:00<00:00, 8.81it/s]
--- Text 1316 --- Text: 'i guess it comes from believing that when i was younger anger was not a feeling that was acceptable so i tried not to have it' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i guess it comes from believing that when i was younger anger was not a feeling that was acceptable so i tried not to have it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i guess it comes from believing that when i was younger anger was not a feeling that was acceptable so i tried not to have it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.14it/s]
--- Text 1317 --- Text: 'i am pleased to report that i in many ways i am feeling well' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am pleased to report that i in many ways i am feeling well What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am pleased to report that i in many ways i am feeling well What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.65it/s]
--- Text 1318 --- Text: 'i have now and feeling like people think it means im just ok and dont need to talk about jeremy anymore' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i have now and feeling like people think it means im just ok and dont need to talk about jeremy anymore What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have now and feeling like people think it means im just ok and dont need to talk about jeremy anymore What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.34it/s]
--- Text 1319 --- Text: 'im also still feeling whiney as hell so its possible i could rant a bit today' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im also still feeling whiney as hell so its possible i could rant a bit today What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im also still feeling whiney as hell so its possible i could rant a bit today What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Whiney Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.13it/s] 50%|█████ | 5/10 [00:00<00:00, 13.03it/s]
--- Text 1320 --- Text: 'i still do feel left out i do feel like the most hated kid in the asian crew' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i still do feel left out i do feel like the most hated kid in the asian crew What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i still do feel left out i do feel like the most hated kid in the asian crew What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.89it/s]
--- Text 1321 --- Text: 'i feel like a greedy pig catching up to do lt bc afterward yay im gna get my delicious chocolates and in exchange zjs gna get bai tu tang from me' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel like a greedy pig catching up to do lt bc afterward yay im gna get my delicious chocolates and in exchange zjs gna get bai tu tang from me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like a greedy pig catching up to do lt bc afterward yay im gna get my delicious chocolates and in exchange zjs gna get bai tu tang from me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.74it/s] 20%|██ | 2/10 [00:00<00:00, 9.16it/s]
--- Text 1322 --- Text: 'i know what it feels like to be scared into something' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i know what it feels like to be scared into something What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i know what it feels like to be scared into something What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear. Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 60%|██████ | 6/10 [00:00<00:00, 13.86it/s]
--- Text 1323 --- Text: 'i started to feel so overwhelmed' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i started to feel so overwhelmed What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i started to feel so overwhelmed What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: overwhelmed Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.23it/s] 40%|████ | 4/10 [00:00<00:00, 12.01it/s]
--- Text 1324 --- Text: 'i feel slytherin is my house slytherin is for those who are smart enough to know how to get the job done and at any cost' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel slytherin is my house slytherin is for those who are smart enough to know how to get the job done and at any cost What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel slytherin is my house slytherin is for those who are smart enough to know how to get the job done and at any cost What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.68it/s]
--- Text 1325 --- Text: 'i didnt react with the way that i really feel im ecstatic for your marriage to tonks' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i didnt react with the way that i really feel im ecstatic for your marriage to tonks What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i didnt react with the way that i really feel im ecstatic for your marriage to tonks What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.28it/s]
--- Text 1326 --- Text: 'im not feeling pressured to perform athletic moves in order to stay on the field' True Emotion: fear --- Zero-Shot Prompting --- Prompt: im not feeling pressured to perform athletic moves in order to stay on the field What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im not feeling pressured to perform athletic moves in order to stay on the field What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: NONE OF THE ABOVE Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.40it/s]
--- Text 1327 --- Text: 'i feel unfortunate that i dont have a lot of time to spend with my family' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel unfortunate that i dont have a lot of time to spend with my family What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel unfortunate that i dont have a lot of time to spend with my family What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.83it/s]
--- Text 1328 --- Text: 'i can imagine most young people might feel resentful about the attention their sibling was getting while also feeling guilt at the same time' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i can imagine most young people might feel resentful about the attention their sibling was getting while also feeling guilt at the same time What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i can imagine most young people might feel resentful about the attention their sibling was getting while also feeling guilt at the same time What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.18it/s] 50%|█████ | 5/10 [00:00<00:00, 12.79it/s]
--- Text 1329 --- Text: 'i don t really know the oldest one very well and his mothering mother seems to feel that he is not sweet' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i don t really know the oldest one very well and his mothering mother seems to feel that he is not sweet What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i don t really know the oldest one very well and his mothering mother seems to feel that he is not sweet What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.26it/s] 100%|██████████| 10/10 [00:00<00:00, 16.74it/s]
--- Text 1330 --- Text: 'i feel as though were giving too many details about unimportant things like chriss mundane life and left out on other details like more character depth especially with secondary characters' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel as though were giving too many details about unimportant things like chriss mundane life and left out on other details like more character depth especially with secondary characters What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel as though were giving too many details about unimportant things like chriss mundane life and left out on other details like more character depth especially with secondary characters What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: The text is written in a way that Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.78it/s]
--- Text 1331 --- Text: 'i know she shes the only one who provides income to my family right now but it feels like shes putting it up in our face that shes supporting us' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i know she shes the only one who provides income to my family right now but it feels like shes putting it up in our face that shes supporting us What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i know she shes the only one who provides income to my family right now but it feels like shes putting it up in our face that shes supporting us What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.48it/s] 100%|██████████| 10/10 [00:00<00:00, 17.01it/s]
--- Text 1332 --- Text: 'i feel like i m superior to the human race rel bookmark permalink' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like i m superior to the human race rel bookmark permalink What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Please explain your answer. Thank you. Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like i m superior to the human race rel bookmark permalink What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: "I feel like I'm superior Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.73it/s] 40%|████ | 4/10 [00:00<00:00, 12.71it/s]
--- Text 1333 --- Text: 'i feel more assured having made my peace with atheism' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel more assured having made my peace with atheism What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel more assured having made my peace with atheism What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Assurance Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.77it/s]
--- Text 1334 --- Text: 'i just want to feel loved by you' True Emotion: love --- Zero-Shot Prompting --- Prompt: i just want to feel loved by you What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i just want to feel loved by you What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.68it/s]
--- Text 1335 --- Text: 'i only talk about how people make me feel and the only people i talk about are the ones that make me feel unhappy upset nervous or angry' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i only talk about how people make me feel and the only people i talk about are the ones that make me feel unhappy upset nervous or angry What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i only talk about how people make me feel and the only people i talk about are the ones that make me feel unhappy upset nervous or angry What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
100%|██████████| 10/10 [00:00<00:00, 18.61it/s] 40%|████ | 4/10 [00:00<00:00, 12.62it/s]
--- Text 1336 --- Text: 'i to feel defeated' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i to feel defeated What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i to feel defeated What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.05it/s]
--- Text 1337 --- Text: 'im feeling more lively than yesterday still not sure about food though' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im feeling more lively than yesterday still not sure about food though What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling more lively than yesterday still not sure about food though What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.72it/s]
--- Text 1338 --- Text: 'i also baked enough cookies to take to my local bbw tomorrow night i feel so bad for the employees who have to work' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i also baked enough cookies to take to my local bbw tomorrow night i feel so bad for the employees who have to work What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i also baked enough cookies to take to my local bbw tomorrow night i feel so bad for the employees who have to work What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.75it/s] 70%|███████ | 7/10 [00:00<00:00, 13.72it/s]
--- Text 1339 --- Text: 'i feel slightly unfortunate in the sense that the calendar year wasn t a great year for the systems if i m honest' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel slightly unfortunate in the sense that the calendar year wasn t a great year for the systems if i m honest What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is slightly un Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel slightly unfortunate in the sense that the calendar year wasn t a great year for the systems if i m honest What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Slightly unfortunate Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.63it/s]
--- Text 1340 --- Text: 'i met my ex briefly just to catch up because he was leaving for sarawak lololol it was good seeing him again and now i feel so awkward typing this' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i met my ex briefly just to catch up because he was leaving for sarawak lololol it was good seeing him again and now i feel so awkward typing this What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i met my ex briefly just to catch up because he was leaving for sarawak lololol it was good seeing him again and now i feel so awkward typing this What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.53it/s]
--- Text 1341 --- Text: 'i considered jogging since it is not too cold today but decided against it as my right ankle is already feeling tender for some reason' True Emotion: love --- Zero-Shot Prompting --- Prompt: i considered jogging since it is not too cold today but decided against it as my right ankle is already feeling tender for some reason What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i considered jogging since it is not too cold today but decided against it as my right ankle is already feeling tender for some reason What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.91it/s]
--- Text 1342 --- Text: 'im feeling so embarrassed frightened that i wouldve smashed the window and slid in dukes of hazzard style if it would get garage man to stop glaring at me' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im feeling so embarrassed frightened that i wouldve smashed the window and slid in dukes of hazzard style if it would get garage man to stop glaring at me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling so embarrassed frightened that i wouldve smashed the window and slid in dukes of hazzard style if it would get garage man to stop glaring at me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear Predicted Emotion: fear --------------------
100%|██████████| 10/10 [00:00<00:00, 16.75it/s] 40%|████ | 4/10 [00:00<00:00, 11.57it/s]
--- Text 1343 --- Text: 'im feeling my way often blindly from the carefree days of youth into the uncharted waters of maturity aka the midlife crisis here i explore transformation via one of my favorite things the tracy anderson method' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im feeling my way often blindly from the carefree days of youth into the uncharted waters of maturity aka the midlife crisis here i explore transformation via one of my favorite things the tracy anderson method What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling my way often blindly from the carefree days of youth into the uncharted waters of maturity aka the midlife crisis here i explore transformation via one of my favorite things the tracy anderson method What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.13it/s] 30%|███ | 3/10 [00:00<00:00, 11.36it/s]
--- Text 1344 --- Text: 'i feel like the leadership training was a perfect vision of what god wants missionary work to be now' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like the leadership training was a perfect vision of what god wants missionary work to be now What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i feel like the leadership training was a perfect vision of what god wants missionary work to be now What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 60%|██████ | 6/10 [00:00<00:00, 14.00it/s]
--- Text 1345 --- Text: 'i was studying i always had the feeling that the process was unpleasant but it was absolutely necessary' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i was studying i always had the feeling that the process was unpleasant but it was absolutely necessary What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was studying i always had the feeling that the process was unpleasant but it was absolutely necessary What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Necessity Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.56it/s]
--- Text 1346 --- Text: 'im feeling really outgoing and i get with a really quiet person and i try to make them feel comfortable' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im feeling really outgoing and i get with a really quiet person and i try to make them feel comfortable What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling really outgoing and i get with a really quiet person and i try to make them feel comfortable What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.03it/s] 50%|█████ | 5/10 [00:00<00:00, 12.71it/s]
--- Text 1347 --- Text: 'i feel guilt that i should be more caring and im not' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel guilt that i should be more caring and im not What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel guilt that i should be more caring and im not What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.45it/s] 50%|█████ | 5/10 [00:00<00:00, 13.56it/s]
--- Text 1348 --- Text: 'i feel that he is gazing me and giving a naughty smile encouraging me to study more' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel that he is gazing me and giving a naughty smile encouraging me to study more What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i feel that he is gazing me and giving a naughty smile encouraging me to study more What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.57it/s]
--- Text 1349 --- Text: 'i was feeling fairly keen' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i was feeling fairly keen What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was feeling fairly keen What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.22it/s] 20%|██ | 2/10 [00:00<00:00, 9.52it/s]
--- Text 1350 --- Text: 'i feel threatened when other people do not believe that' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel threatened when other people do not believe that What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i feel threatened when other people do not believe that What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear. Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.81it/s]
--- Text 1351 --- Text: 'i feel like im better amp able to do things it comes back' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like im better amp able to do things it comes back What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like im better amp able to do things it comes back What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel like I'm better able Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.40it/s]
--- Text 1352 --- Text: 'i am feeling currently but as with anything when it s all resolved feelings will change' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am feeling currently but as with anything when it s all resolved feelings will change What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling currently but as with anything when it s all resolved feelings will change What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.31it/s] 60%|██████ | 6/10 [00:00<00:00, 13.44it/s]
--- Text 1353 --- Text: 'i am feeling the self hate going or when i find myself feeling hateful of someone else all i have to do to feel the power and compassion of spirit once more is by remembering i am a spiritual being' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i am feeling the self hate going or when i find myself feeling hateful of someone else all i have to do to feel the power and compassion of spirit once more is by remembering i am a spiritual being What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling the self hate going or when i find myself feeling hateful of someone else all i have to do to feel the power and compassion of spirit once more is by remembering i am a spiritual being What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Self-hatred Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.34it/s] 50%|█████ | 5/10 [00:00<00:00, 11.47it/s]
--- Text 1354 --- Text: 'i feel i am appreciative i take care of the baby i try to keep the apt clean as much as possible and i try not to call him a million times to find out when hell be home it varies from day to day as he is sort of self employed so its hard to plan things around his schedule' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel i am appreciative i take care of the baby i try to keep the apt clean as much as possible and i try not to call him a million times to find out when hell be home it varies from day to day as he is sort of self employed so its hard to plan things around his schedule What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i feel i am appreciative i take care of the baby i try to keep the apt clean as much as possible and i try not to call him a million times to find out when hell be home it varies from day to day as he is sort of self employed so its hard to plan things around his schedule What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Appreciation Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.61it/s]
--- Text 1355 --- Text: 'im just feeling emo and bitchy atm' True Emotion: anger --- Zero-Shot Prompting --- Prompt: im just feeling emo and bitchy atm What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im just feeling emo and bitchy atm What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: bitchy Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.87it/s] 40%|████ | 4/10 [00:00<00:00, 12.68it/s]
--- Text 1356 --- Text: 'i was afraid of water when i was young people feel afraid of death because they have never experienced it' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i was afraid of water when i was young people feel afraid of death because they have never experienced it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i was afraid of water when i was young people feel afraid of death because they have never experienced it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fear Predicted Emotion: fear --------------------
100%|██████████| 10/10 [00:00<00:00, 17.45it/s] 100%|██████████| 10/10 [00:00<00:00, 17.28it/s]
--- Text 1357 --- Text: 'i dare myself to do the following when i m feeling brave enough' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i dare myself to do the following when i m feeling brave enough What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i dare myself to do the following when i m feeling brave enough What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I dare myself to do the following when Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 70%|███████ | 7/10 [00:00<00:00, 14.76it/s]
--- Text 1358 --- Text: 'i feel eager to do well and i feel like ive got more titles in me he concluded ominously' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel eager to do well and i feel like ive got more titles in me he concluded ominously What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel eager to do well and i feel like ive got more titles in me he concluded ominously What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: EAGERNESS Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.26it/s] 40%|████ | 4/10 [00:00<00:00, 12.03it/s]
--- Text 1359 --- Text: 'im looking at the stress levels im feeling and not loving how concentrated they are because of my mindset of planning a wedding in four months' True Emotion: love --- Zero-Shot Prompting --- Prompt: im looking at the stress levels im feeling and not loving how concentrated they are because of my mindset of planning a wedding in four months What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is stress. Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im looking at the stress levels im feeling and not loving how concentrated they are because of my mindset of planning a wedding in four months What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.72it/s]
--- Text 1360 --- Text: 'im feeling quite positive in what i want to achieve' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im feeling quite positive in what i want to achieve What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling quite positive in what i want to achieve What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.39it/s]
--- Text 1361 --- Text: 'i have a family i can feel passionate about and completely comfortable with' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i have a family i can feel passionate about and completely comfortable with What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have a family i can feel passionate about and completely comfortable with What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.27it/s] 40%|████ | 4/10 [00:00<00:00, 11.88it/s]
--- Text 1362 --- Text: 'i feel that this is for others to decide hellip i m delighted that fans of my paintings will now be able to see a body of work of which i m very proud' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel that this is for others to decide hellip i m delighted that fans of my paintings will now be able to see a body of work of which i m very proud What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: pride Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel that this is for others to decide hellip i m delighted that fans of my paintings will now be able to see a body of work of which i m very proud What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Delight Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.07it/s] 50%|█████ | 5/10 [00:00<00:00, 12.64it/s]
--- Text 1363 --- Text: 'ive never done a detox or cleanse before and i really had no desire to i feel like cleanses cycle around and become popular every couple of years and id pretty much written them off' True Emotion: joy --- Zero-Shot Prompting --- Prompt: ive never done a detox or cleanse before and i really had no desire to i feel like cleanses cycle around and become popular every couple of years and id pretty much written them off What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: ive never done a detox or cleanse before and i really had no desire to i feel like cleanses cycle around and become popular every couple of years and id pretty much written them off What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.12it/s] 40%|████ | 4/10 [00:00<00:00, 11.29it/s]
--- Text 1364 --- Text: 'i came to utah freaking out about not knowing what i was doing with my life feeling less worthwhile because of not going on a mission like every other girl and just being stressed by the daily stresses my life has lovingly given me' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i came to utah freaking out about not knowing what i was doing with my life feeling less worthwhile because of not going on a mission like every other girl and just being stressed by the daily stresses my life has lovingly given me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i came to utah freaking out about not knowing what i was doing with my life feeling less worthwhile because of not going on a mission like every other girl and just being stressed by the daily stresses my life has lovingly given me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.91it/s]
--- Text 1365 --- Text: 'i am feeling very indecisive and spontaneous' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i am feeling very indecisive and spontaneous What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling very indecisive and spontaneous What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: spontaneous Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.71it/s] 30%|███ | 3/10 [00:00<00:00, 11.43it/s]
--- Text 1366 --- Text: 'i feel beaten down and i feel void' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel beaten down and i feel void What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel beaten down and i feel void What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness. Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.50it/s] 50%|█████ | 5/10 [00:00<00:00, 13.23it/s]
--- Text 1367 --- Text: 'i feel like resolutions are boring and cliche' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like resolutions are boring and cliche What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like resolutions are boring and cliche What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.05it/s] 100%|██████████| 10/10 [00:00<00:00, 16.57it/s]
--- Text 1368 --- Text: 'i feel pressured to do well and i fe' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel pressured to do well and i fe What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i feel pressured to do well and i fe What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: i feel pressured to do well and Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.45it/s]
--- Text 1369 --- Text: 'im feeling rotten and pretending it just aint so' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im feeling rotten and pretending it just aint so What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling rotten and pretending it just aint so What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.49it/s]
--- Text 1370 --- Text: 'im feeling excited about it' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im feeling excited about it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling excited about it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Excitement Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.47it/s]
--- Text 1371 --- Text: 'ive been feeling delicate this week' True Emotion: love --- Zero-Shot Prompting --- Prompt: ive been feeling delicate this week What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: ive been feeling delicate this week What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.25it/s]
--- Text 1372 --- Text: 'i feel it is very rude and ingorant' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel it is very rude and ingorant What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel it is very rude and ingorant What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.36it/s]
--- Text 1373 --- Text: 'i can begin to see a first step and suddenly life does not feel so despairing' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i can begin to see a first step and suddenly life does not feel so despairing What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i can begin to see a first step and suddenly life does not feel so despairing What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: surprise Predicted Emotion: surprise --------------------
100%|██████████| 10/10 [00:00<00:00, 16.79it/s] 100%|██████████| 10/10 [00:00<00:00, 16.62it/s]
--- Text 1374 --- Text: 'i had a feeling that he would be the one eliminated but wasn t completely convinced his cooking skillz were da bomb yes i m whipping out the early s lingo' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i had a feeling that he would be the one eliminated but wasn t completely convinced his cooking skillz were da bomb yes i m whipping out the early s lingo What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i had a feeling that he would be the one eliminated but wasn t completely convinced his cooking skillz were da bomb yes i m whipping out the early s lingo What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: The emotion of this text is: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.48it/s]
--- Text 1375 --- Text: 'i feel stupid enough' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel stupid enough What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel stupid enough What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: i feel stupid enough Please select Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.27it/s]
--- Text 1376 --- Text: 'i begin to sense how these characters are feeling the heartbreaks theyre suffering or have suffered already' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i begin to sense how these characters are feeling the heartbreaks theyre suffering or have suffered already What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i begin to sense how these characters are feeling the heartbreaks theyre suffering or have suffered already What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.75it/s]
--- Text 1377 --- Text: 'i feel completely rude with not keeping up with some of you over the course of the year but it has been a mightily busy one' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel completely rude with not keeping up with some of you over the course of the year but it has been a mightily busy one What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel completely rude with not keeping up with some of you over the course of the year but it has been a mightily busy one What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.26it/s] 30%|███ | 3/10 [00:00<00:00, 10.31it/s]
--- Text 1378 --- Text: 'i walked to school he felt the bounce in his step the overjoyed feelings of youth and the thrill of excitement of coming to school and meeting his beloved friends' True Emotion: love --- Zero-Shot Prompting --- Prompt: i walked to school he felt the bounce in his step the overjoyed feelings of youth and the thrill of excitement of coming to school and meeting his beloved friends What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i walked to school he felt the bounce in his step the overjoyed feelings of youth and the thrill of excitement of coming to school and meeting his beloved friends What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.22it/s]
--- Text 1379 --- Text: 'i am up and ready to read read read today even though im feeling very groggy this morning' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i am up and ready to read read read today even though im feeling very groggy this morning What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am up and ready to read read read today even though im feeling very groggy this morning What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.52it/s]
--- Text 1380 --- Text: 'i just cant help but feel like i must protect this innocent being' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i just cant help but feel like i must protect this innocent being What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i just cant help but feel like i must protect this innocent being What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.45it/s] 40%|████ | 4/10 [00:00<00:00, 12.26it/s]
--- Text 1381 --- Text: 'i feel his gracious presence even now' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel his gracious presence even now What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i feel his gracious presence even now What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.44it/s] 40%|████ | 4/10 [00:00<00:00, 12.35it/s]
--- Text 1382 --- Text: 'i was like should i feel sweet or feel offended' True Emotion: love --- Zero-Shot Prompting --- Prompt: i was like should i feel sweet or feel offended What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was like should i feel sweet or feel offended What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: offended Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.89it/s]
--- Text 1383 --- Text: 'i cannot even begin to express in words the depth of sorrow that i feel having not posted any of my ludicrous rants over the passed days' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i cannot even begin to express in words the depth of sorrow that i feel having not posted any of my ludicrous rants over the passed days What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i cannot even begin to express in words the depth of sorrow that i feel having not posted any of my ludicrous rants over the passed days What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.49it/s] 50%|█████ | 5/10 [00:00<00:00, 13.57it/s]
--- Text 1384 --- Text: 'this monday i took a math bs test and flunked for the second time' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: this monday i took a math bs test and flunked for the second time What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: this monday i took a math bs test and flunked for the second time What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.44it/s]
--- Text 1385 --- Text: 'i still feel a little weird and uncertain' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i still feel a little weird and uncertain What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i still feel a little weird and uncertain What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I still feel a little weird and uncertain Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.62it/s] 30%|███ | 3/10 [00:00<00:00, 9.41it/s]
--- Text 1386 --- Text: 'i wanna feel that gorgeous body a yers underneath me next time i m fuckin ya alex took a deep breath and her eyes seemed to glow while she imagined the scenario in her mind a scene she had pictured many times before' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i wanna feel that gorgeous body a yers underneath me next time i m fuckin ya alex took a deep breath and her eyes seemed to glow while she imagined the scenario in her mind a scene she had pictured many times before What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i wanna feel that gorgeous body a yers underneath me next time i m fuckin ya alex took a deep breath and her eyes seemed to glow while she imagined the scenario in her mind a scene she had pictured many times before What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.39it/s]
--- Text 1387 --- Text: 'i guess its because i feel like if im too passionate about something it will get taken away from me' True Emotion: love --- Zero-Shot Prompting --- Prompt: i guess its because i feel like if im too passionate about something it will get taken away from me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i guess its because i feel like if im too passionate about something it will get taken away from me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.71it/s] 20%|██ | 2/10 [00:00<00:00, 9.52it/s]
--- Text 1388 --- Text: 'im not sure but theres nothing that will get a person feeling amorous faster than a stay in a hotel' True Emotion: love --- Zero-Shot Prompting --- Prompt: im not sure but theres nothing that will get a person feeling amorous faster than a stay in a hotel What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: im not sure but theres nothing that will get a person feeling amorous faster than a stay in a hotel What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.99it/s]
--- Text 1389 --- Text: 'i feel makes the perfect duo' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel makes the perfect duo What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel makes the perfect duo What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel makes the perfect duo Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.82it/s]
--- Text 1390 --- Text: 'i feel any better' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel any better What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel any better What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.86it/s] 20%|██ | 2/10 [00:00<00:00, 8.78it/s]
--- Text 1391 --- Text: 'im lucky enough in life to meet someone who makes me feel safe happy secure and loved i feel theres no reason to wait' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im lucky enough in life to meet someone who makes me feel safe happy secure and loved i feel theres no reason to wait What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: im lucky enough in life to meet someone who makes me feel safe happy secure and loved i feel theres no reason to wait What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.70it/s]
--- Text 1392 --- Text: 'i would feel productive' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i would feel productive What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i would feel productive What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.74it/s]
--- Text 1393 --- Text: 'im not feeling jolly in the least' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im not feeling jolly in the least What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im not feeling jolly in the least What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.69it/s]
--- Text 1394 --- Text: 'i miss not feeling exhausted after being outside in the heat for minutes' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i miss not feeling exhausted after being outside in the heat for minutes What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i miss not feeling exhausted after being outside in the heat for minutes What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.18it/s] 40%|████ | 4/10 [00:00<00:00, 11.79it/s]
--- Text 1395 --- Text: 'i didn t think it was possible to make a cover that expressed the personality of the novel since it s a strange cross genre story but the photo that was found nails the heart of the book so closely that i feel a bit stunned' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i didn t think it was possible to make a cover that expressed the personality of the novel since it s a strange cross genre story but the photo that was found nails the heart of the book so closely that i feel a bit stunned What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is surprise. Predicted Emotion: surprise --- Constraint-Based Prompting --- Prompt: i didn t think it was possible to make a cover that expressed the personality of the novel since it s a strange cross genre story but the photo that was found nails the heart of the book so closely that i feel a bit stunned What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.71it/s]
--- Text 1396 --- Text: 'i sure would love to stop feeling so horny all the time' True Emotion: love --- Zero-Shot Prompting --- Prompt: i sure would love to stop feeling so horny all the time What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i sure would love to stop feeling so horny all the time What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.03it/s] 40%|████ | 4/10 [00:00<00:00, 11.56it/s]
--- Text 1397 --- Text: 'i appreciate how clean their lifestyles are even though i admit there were a few moments where the complete aversion to substances sex made me feel a little repressed' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i appreciate how clean their lifestyles are even though i admit there were a few moments where the complete aversion to substances sex made me feel a little repressed What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is likely joy Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i appreciate how clean their lifestyles are even though i admit there were a few moments where the complete aversion to substances sex made me feel a little repressed What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.25it/s] 50%|█████ | 5/10 [00:00<00:00, 13.32it/s]
--- Text 1398 --- Text: 'i have come from the summer time and feeling like coach hated me' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i have come from the summer time and feeling like coach hated me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i have come from the summer time and feeling like coach hated me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.05it/s] 40%|████ | 4/10 [00:00<00:00, 12.03it/s]
--- Text 1399 --- Text: 'i find myself feeling paranoid that something is going to ruin what could only be described as my fairy tale love affair' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i find myself feeling paranoid that something is going to ruin what could only be described as my fairy tale love affair What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i find myself feeling paranoid that something is going to ruin what could only be described as my fairy tale love affair What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fear Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.79it/s]
--- Text 1400 --- Text: 'i cannot explain why but i need to say please understand my feeling i have heart and im not a heartless person' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i cannot explain why but i need to say please understand my feeling i have heart and im not a heartless person What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i cannot explain why but i need to say please understand my feeling i have heart and im not a heartless person What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.30it/s] 40%|████ | 4/10 [00:00<00:00, 11.99it/s]
--- Text 1401 --- Text: 'i take photos of but i suppose since i feel i am least talented in the area of portraiture i most admire that ability in others' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i take photos of but i suppose since i feel i am least talented in the area of portraiture i most admire that ability in others What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i take photos of but i suppose since i feel i am least talented in the area of portraiture i most admire that ability in others What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.15it/s]
--- Text 1402 --- Text: 'i am very sad you feel distracted but i am not participating in the relationship you think we have' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i am very sad you feel distracted but i am not participating in the relationship you think we have What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am very sad you feel distracted but i am not participating in the relationship you think we have What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.13it/s] 40%|████ | 4/10 [00:00<00:00, 12.92it/s]
--- Text 1403 --- Text: 'i just keep on feeling blessed' True Emotion: love --- Zero-Shot Prompting --- Prompt: i just keep on feeling blessed What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i just keep on feeling blessed What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: blessed Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.21it/s] 40%|████ | 4/10 [00:00<00:00, 11.89it/s]
--- Text 1404 --- Text: 'i think also i have changed obviously i am making more effort to go to things and make friends i feel less shy and less bothered about peoples judgement of my appearance' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i think also i have changed obviously i am making more effort to go to things and make friends i feel less shy and less bothered about peoples judgement of my appearance What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i think also i have changed obviously i am making more effort to go to things and make friends i feel less shy and less bothered about peoples judgement of my appearance What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.56it/s] 40%|████ | 4/10 [00:00<00:00, 11.45it/s]
--- Text 1405 --- Text: 'i can tell my arms and hands feel weaker and they feel more numb and tingly at night when i wake up' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i can tell my arms and hands feel weaker and they feel more numb and tingly at night when i wake up What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i can tell my arms and hands feel weaker and they feel more numb and tingly at night when i wake up What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.19it/s]
--- Text 1406 --- Text: 'i almost feel too stubborn to come back as i said that i was leaving' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i almost feel too stubborn to come back as i said that i was leaving What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i almost feel too stubborn to come back as i said that i was leaving What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Stubborn Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.08it/s]
--- Text 1407 --- Text: 'i feel like i am actually a creative person now' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like i am actually a creative person now What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like i am actually a creative person now What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.91it/s]
--- Text 1408 --- Text: 'i am feeling pretty excited about this' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am feeling pretty excited about this What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling pretty excited about this What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.39it/s]
--- Text 1409 --- Text: 'i feel more optimistic about everything than i have in a long time' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel more optimistic about everything than i have in a long time What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel more optimistic about everything than i have in a long time What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.57it/s]
--- Text 1410 --- Text: 'im feeling very doubtful about the necessity of that big coat' True Emotion: fear --- Zero-Shot Prompting --- Prompt: im feeling very doubtful about the necessity of that big coat What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling very doubtful about the necessity of that big coat What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Doubt Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.06it/s]
--- Text 1411 --- Text: 'i am feeling joyful every part of me feels happy and light and whimsical' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am feeling joyful every part of me feels happy and light and whimsical What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling joyful every part of me feels happy and light and whimsical What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.73it/s] 50%|█████ | 5/10 [00:00<00:00, 13.28it/s]
--- Text 1412 --- Text: 'i feel so relaxed and happy when im in the water' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel so relaxed and happy when im in the water What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so relaxed and happy when im in the water What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Happiness Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.23it/s]
--- Text 1413 --- Text: 'i never draw on both sides of the pages and like to know i can add to drawings when i feel like it rather than feeling pressured that they have to be finished all in one go' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i never draw on both sides of the pages and like to know i can add to drawings when i feel like it rather than feeling pressured that they have to be finished all in one go What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i never draw on both sides of the pages and like to know i can add to drawings when i feel like it rather than feeling pressured that they have to be finished all in one go What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I never draw on both sides of the Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.26it/s]
--- Text 1414 --- Text: 'i think ive just been feeling a little bothered' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i think ive just been feeling a little bothered What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i think ive just been feeling a little bothered What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: bothered Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.77it/s]
--- Text 1415 --- Text: 'i wasnt very interested in it but it evoked the feeling of an earth grittily doomed by aliens quite well' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i wasnt very interested in it but it evoked the feeling of an earth grittily doomed by aliens quite well What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i wasnt very interested in it but it evoked the feeling of an earth grittily doomed by aliens quite well What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fear Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.69it/s]
--- Text 1416 --- Text: 'i agree even though when i feel discouraged i like to go to places with lots of color because they make me feel better' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i agree even though when i feel discouraged i like to go to places with lots of color because they make me feel better What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i agree even though when i feel discouraged i like to go to places with lots of color because they make me feel better What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.50it/s]
--- Text 1417 --- Text: 'i feel like i am the world for this boy and im glad that for a time i can be that for him' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like i am the world for this boy and im glad that for a time i can be that for him What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like i am the world for this boy and im glad that for a time i can be that for him What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.73it/s] 20%|██ | 2/10 [00:00<00:00, 9.18it/s]
--- Text 1418 --- Text: 'i don t know about you but i m feeling amp blessed' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i don t know about you but i m feeling amp blessed What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i don t know about you but i m feeling amp blessed What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy. Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.47it/s]
--- Text 1419 --- Text: 'im feeling fab thank you so very much for asking' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im feeling fab thank you so very much for asking What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling fab thank you so very much for asking What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.54it/s]
--- Text 1420 --- Text: 'i should pull out if i feel resentful or edgy' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i should pull out if i feel resentful or edgy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i should pull out if i feel resentful or edgy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.84it/s]
--- Text 1421 --- Text: 'i li pouring down in the corner under the moonlight shines on his face i saw his pale face and mouth with half closed eyes bear people feel more distressed' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i li pouring down in the corner under the moonlight shines on his face i saw his pale face and mouth with half closed eyes bear people feel more distressed What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i li pouring down in the corner under the moonlight shines on his face i saw his pale face and mouth with half closed eyes bear people feel more distressed What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.90it/s]
--- Text 1422 --- Text: 'i feel a little scared about this because it is new to me and i have a lot to learn but im sure everything is going to be fine and we can do this together' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel a little scared about this because it is new to me and i have a lot to learn but im sure everything is going to be fine and we can do this together What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel a little scared about this because it is new to me and i have a lot to learn but im sure everything is going to be fine and we can do this together What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fear Predicted Emotion: fear --------------------
100%|██████████| 10/10 [00:00<00:00, 17.29it/s] 50%|█████ | 5/10 [00:00<00:00, 12.94it/s]
--- Text 1423 --- Text: 'i was wondering if you will focus on the problems because any way you are not care for themselves when complaining or feeling needy' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i was wondering if you will focus on the problems because any way you are not care for themselves when complaining or feeling needy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i was wondering if you will focus on the problems because any way you are not care for themselves when complaining or feeling needy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.32it/s]
--- Text 1424 --- Text: 'i feel like im being really needy' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like im being really needy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like im being really needy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: neediness. Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.80it/s]
--- Text 1425 --- Text: 'i just feel greedy and lame making one' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i just feel greedy and lame making one What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i just feel greedy and lame making one What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I just feel greedy and lame Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.72it/s] 40%|████ | 4/10 [00:00<00:00, 11.88it/s]
--- Text 1426 --- Text: 'i see the look of doubt on your face i feel the scorn in your eyes but for anyone skeptical of grits dinner grits please see this as a totally amazing sister to mashed potatoes' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i see the look of doubt on your face i feel the scorn in your eyes but for anyone skeptical of grits dinner grits please see this as a totally amazing sister to mashed potatoes What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i see the look of doubt on your face i feel the scorn in your eyes but for anyone skeptical of grits dinner grits please see this as a totally amazing sister to mashed potatoes What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.74it/s]
--- Text 1427 --- Text: 'i get the feeling that this could be dangerous' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i get the feeling that this could be dangerous What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i get the feeling that this could be dangerous What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear Predicted Emotion: fear --------------------
100%|██████████| 10/10 [00:00<00:00, 17.29it/s] 30%|███ | 3/10 [00:00<00:00, 10.40it/s]
--- Text 1428 --- Text: 'i randomly heard this and ever since then watching the video has been a delight and the music just makes me feel as jolly in reference' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i randomly heard this and ever since then watching the video has been a delight and the music just makes me feel as jolly in reference What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i randomly heard this and ever since then watching the video has been a delight and the music just makes me feel as jolly in reference What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.80it/s]
--- Text 1429 --- Text: 'i feel satisfied that ive made the cut off you can only receive overflow money from stsm if you are over and i told myself that im just going to wait for the overflow instead of trying to hit and help my team' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel satisfied that ive made the cut off you can only receive overflow money from stsm if you are over and i told myself that im just going to wait for the overflow instead of trying to hit and help my team What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel satisfied that ive made the cut off you can only receive overflow money from stsm if you are over and i told myself that im just going to wait for the overflow instead of trying to hit and help my team What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Satisfaction Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.14it/s] 50%|█████ | 5/10 [00:00<00:00, 13.55it/s]
--- Text 1430 --- Text: 'i rarely feel happily joyful and dont walk about smiling much' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i rarely feel happily joyful and dont walk about smiling much What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i rarely feel happily joyful and dont walk about smiling much What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.59it/s]
--- Text 1431 --- Text: 'i hurt your feelings and for that i am sorry' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i hurt your feelings and for that i am sorry What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i hurt your feelings and for that i am sorry What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.88it/s]
--- Text 1432 --- Text: 'i felt a stronger wish to be free from self cherishing through my refuge practice and a return to the feeling of freedom and protection from suffering which i stayed with for the rest of the meditation' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i felt a stronger wish to be free from self cherishing through my refuge practice and a return to the feeling of freedom and protection from suffering which i stayed with for the rest of the meditation What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i felt a stronger wish to be free from self cherishing through my refuge practice and a return to the feeling of freedom and protection from suffering which i stayed with for the rest of the meditation What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.75it/s] 100%|██████████| 10/10 [00:00<00:00, 16.43it/s]
--- Text 1433 --- Text: 'i stand in front of mansoor s works i feel obviously that the artistic intention is not to raise the already raised questions of structural linguistics and the deconstructionist clamours that followed it' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i stand in front of mansoor s works i feel obviously that the artistic intention is not to raise the already raised questions of structural linguistics and the deconstructionist clamours that followed it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i stand in front of mansoor s works i feel obviously that the artistic intention is not to raise the already raised questions of structural linguistics and the deconstructionist clamours that followed it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: The emotion of this text is: Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.06it/s]
--- Text 1434 --- Text: 'i feel like they are more boring to paint than a bunch of fruit' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like they are more boring to paint than a bunch of fruit What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like they are more boring to paint than a bunch of fruit What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Boredom Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.68it/s]
--- Text 1435 --- Text: 'i would do almost anything to have that feeling back and those days back they were carefree and wonderful and now everything in my life is just so complicated' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i would do almost anything to have that feeling back and those days back they were carefree and wonderful and now everything in my life is just so complicated What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i would do almost anything to have that feeling back and those days back they were carefree and wonderful and now everything in my life is just so complicated What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.92it/s] 100%|██████████| 10/10 [00:00<00:00, 17.28it/s]
--- Text 1436 --- Text: 'i feel anger i feel sad i feel joy and i feel other emotions too but will stick to a few' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel anger i feel sad i feel joy and i feel other emotions too but will stick to a few What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The text is: "I feel so happy Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel anger i feel sad i feel joy and i feel other emotions too but will stick to a few What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel anger I feel sad I feel Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.55it/s]
--- Text 1437 --- Text: 'i set aside that feeling and happily helped them now that every thing was been normalized and the students had liked me they change my schedule and i am just forgotten to oblivion' True Emotion: love --- Zero-Shot Prompting --- Prompt: i set aside that feeling and happily helped them now that every thing was been normalized and the students had liked me they change my schedule and i am just forgotten to oblivion What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i set aside that feeling and happily helped them now that every thing was been normalized and the students had liked me they change my schedule and i am just forgotten to oblivion What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.11it/s] 40%|████ | 4/10 [00:00<00:00, 12.54it/s]
--- Text 1438 --- Text: 'i wonder if i feel under nurtured or needy' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i wonder if i feel under nurtured or needy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i wonder if i feel under nurtured or needy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Nurture Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.19it/s] 40%|████ | 4/10 [00:00<00:00, 12.64it/s]
--- Text 1439 --- Text: 'id ever known so i figured it was normal for me to feel ugly dumb and weird' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: id ever known so i figured it was normal for me to feel ugly dumb and weird What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: id ever known so i figured it was normal for me to feel ugly dumb and weird What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.75it/s]
--- Text 1440 --- Text: 'i stopped feeling a little awkward' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i stopped feeling a little awkward What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i stopped feeling a little awkward What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: awkwardness Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.00it/s]
--- Text 1441 --- Text: 'i guess no matter how much i think im feeling ok im as nervous as hell on the inside about the scan revealing something i dont want to know again' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i guess no matter how much i think im feeling ok im as nervous as hell on the inside about the scan revealing something i dont want to know again What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i guess no matter how much i think im feeling ok im as nervous as hell on the inside about the scan revealing something i dont want to know again What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fear Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.70it/s]
--- Text 1442 --- Text: 'i began to feel a little anxious about may almost being over as obviously time is running out amp to be honest im just plumb out of excuses' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i began to feel a little anxious about may almost being over as obviously time is running out amp to be honest im just plumb out of excuses What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i began to feel a little anxious about may almost being over as obviously time is running out amp to be honest im just plumb out of excuses What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Anxiety Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.15it/s]
--- Text 1443 --- Text: 'i feel less frightened and more grounded and centered' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel less frightened and more grounded and centered What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel less frightened and more grounded and centered What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear Predicted Emotion: fear --------------------
100%|██████████| 10/10 [00:00<00:00, 16.97it/s] 50%|█████ | 5/10 [00:00<00:00, 13.57it/s]
--- Text 1444 --- Text: 'i would like to take the opportunity to describe one day this week when i was feeling particularly gloomy' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i would like to take the opportunity to describe one day this week when i was feeling particularly gloomy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i would like to take the opportunity to describe one day this week when i was feeling particularly gloomy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.26it/s] 40%|████ | 4/10 [00:00<00:00, 12.01it/s]
--- Text 1445 --- Text: 'i could feel how much slower i was on the treadmill but the pace was pleasant and after six days of relative inactivity i was just happy to be running again' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i could feel how much slower i was on the treadmill but the pace was pleasant and after six days of relative inactivity i was just happy to be running again What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is happiness. Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i could feel how much slower i was on the treadmill but the pace was pleasant and after six days of relative inactivity i was just happy to be running again What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Happy Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.39it/s]
--- Text 1446 --- Text: 'i feel so weird but i guess kind of happy' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel so weird but i guess kind of happy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so weird but i guess kind of happy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: happiness Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.12it/s] 50%|█████ | 5/10 [00:00<00:00, 13.57it/s]
--- Text 1447 --- Text: 'im tired of feeling unhappy about things and unmotivated' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im tired of feeling unhappy about things and unmotivated What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is unhapp Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im tired of feeling unhappy about things and unmotivated What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.27it/s]
--- Text 1448 --- Text: 'im feeling generous so there you go with that golden nugget' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im feeling generous so there you go with that golden nugget What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling generous so there you go with that golden nugget What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I'm feeling generous so there Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.90it/s]
--- Text 1449 --- Text: 'i could feel productive during his treatment' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i could feel productive during his treatment What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i could feel productive during his treatment What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.43it/s]
--- Text 1450 --- Text: 'i am doing this and makes me feel more determined to give it some effort and dig deep when im feeling the pain' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am doing this and makes me feel more determined to give it some effort and dig deep when im feeling the pain What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am doing this and makes me feel more determined to give it some effort and dig deep when im feeling the pain What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Determination Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.23it/s]
--- Text 1451 --- Text: 'i might hold a sense of satisfaction at feeling superior and giving advice' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i might hold a sense of satisfaction at feeling superior and giving advice What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i might hold a sense of satisfaction at feeling superior and giving advice What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Satisfaction Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.38it/s]
--- Text 1452 --- Text: 'i wanted to skate fast wanted to try everything just to see the difference in feel which was amazing' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i wanted to skate fast wanted to try everything just to see the difference in feel which was amazing What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i wanted to skate fast wanted to try everything just to see the difference in feel which was amazing What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.55it/s]
--- Text 1453 --- Text: 'i did not want to feel rushed through the program' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i did not want to feel rushed through the program What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i did not want to feel rushed through the program What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 8.38it/s]
--- Text 1454 --- Text: 'i would really love to be with him but not as a friend and not because he feels guilty or sorry for me' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i would really love to be with him but not as a friend and not because he feels guilty or sorry for me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i would really love to be with him but not as a friend and not because he feels guilty or sorry for me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.14it/s] 100%|██████████| 10/10 [00:00<00:00, 16.49it/s]
--- Text 1455 --- Text: 'i do think gt that for those who desire privacy and the camp out feel they would be gt terrific' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i do think gt that for those who desire privacy and the camp out feel they would be gt terrific What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i do think gt that for those who desire privacy and the camp out feel they would be gt terrific What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I do think GT that for those who Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.75it/s]
--- Text 1456 --- Text: 'i cant feel dont turn your back on me i wont be ignored time wont heal dont turn your back on me i wont be ignored' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i cant feel dont turn your back on me i wont be ignored time wont heal dont turn your back on me i wont be ignored What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i cant feel dont turn your back on me i wont be ignored time wont heal dont turn your back on me i wont be ignored What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.57it/s]
--- Text 1457 --- Text: 'i was younger i used to feel homesick' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i was younger i used to feel homesick What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was younger i used to feel homesick What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.50it/s]
--- Text 1458 --- Text: 'i rarely respond to the comments made unless i have what i feel is a very important and specific reason for doing so' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i rarely respond to the comments made unless i have what i feel is a very important and specific reason for doing so What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i rarely respond to the comments made unless i have what i feel is a very important and specific reason for doing so What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.53it/s] 50%|█████ | 5/10 [00:00<00:00, 13.59it/s]
--- Text 1459 --- Text: 'i feel tender when i have not done anything' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel tender when i have not done anything What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is likely sad Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel tender when i have not done anything What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.23it/s] 40%|████ | 4/10 [00:00<00:00, 12.70it/s]
--- Text 1460 --- Text: 'i never feel like anythings getting resolved with my counseling so i just drift away' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i never feel like anythings getting resolved with my counseling so i just drift away What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is likely sad Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i never feel like anythings getting resolved with my counseling so i just drift away What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.51it/s]
--- Text 1461 --- Text: 'i swear and i mean this if the browns fail me tomorrow night and make me feel like an idiot for not trusting my gut feeling that they are going to lose tomorrow i m not picking them to win again all season' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i swear and i mean this if the browns fail me tomorrow night and make me feel like an idiot for not trusting my gut feeling that they are going to lose tomorrow i m not picking them to win again all season What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i swear and i mean this if the browns fail me tomorrow night and make me feel like an idiot for not trusting my gut feeling that they are going to lose tomorrow i m not picking them to win again all season What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 80%|████████ | 8/10 [00:00<00:00, 15.16it/s]
--- Text 1462 --- Text: 'im feeling generous this week' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im feeling generous this week What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling generous this week What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: im feeling generous this week Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.64it/s] 40%|████ | 4/10 [00:00<00:00, 11.77it/s]
--- Text 1463 --- Text: 'i left the theater feeling sad and alone the sudden realization of my own fleeting mortality weighing down each and every step' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i left the theater feeling sad and alone the sudden realization of my own fleeting mortality weighing down each and every step What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i left the theater feeling sad and alone the sudden realization of my own fleeting mortality weighing down each and every step What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.22it/s] 50%|█████ | 5/10 [00:00<00:00, 12.96it/s]
--- Text 1464 --- Text: 'i am definitely feeling the effects of the progesterone in two ways my breasts are tender and i m tired' True Emotion: love --- Zero-Shot Prompting --- Prompt: i am definitely feeling the effects of the progesterone in two ways my breasts are tender and i m tired What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is tired. Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am definitely feeling the effects of the progesterone in two ways my breasts are tender and i m tired What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Tiredness Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.16it/s]
--- Text 1465 --- Text: 'i will try and stay focused in order to avoid that feeling of a reluctant finish' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i will try and stay focused in order to avoid that feeling of a reluctant finish What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i will try and stay focused in order to avoid that feeling of a reluctant finish What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.27it/s]
--- Text 1466 --- Text: 'i never know how to talk to people after shows i always feel a bit dazed so i hope they didnt think i was rude' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i never know how to talk to people after shows i always feel a bit dazed so i hope they didnt think i was rude What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i never know how to talk to people after shows i always feel a bit dazed so i hope they didnt think i was rude What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Dazed Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.24it/s]
--- Text 1467 --- Text: 'i feel that this experience has convinced me all the more that we need prayer for our country' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel that this experience has convinced me all the more that we need prayer for our country What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel that this experience has convinced me all the more that we need prayer for our country What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Conviction Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.25it/s] 50%|█████ | 5/10 [00:00<00:00, 13.38it/s]
--- Text 1468 --- Text: 'i seek out pain to feel tortured just to feel something' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i seek out pain to feel tortured just to feel something What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i seek out pain to feel tortured just to feel something What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.17it/s]
--- Text 1469 --- Text: 'im feeling optimistic to finish out these last two weeks strong and probably continue with what i have been doing' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im feeling optimistic to finish out these last two weeks strong and probably continue with what i have been doing What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling optimistic to finish out these last two weeks strong and probably continue with what i have been doing What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Optimism Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.30it/s] 40%|████ | 4/10 [00:00<00:00, 12.02it/s]
--- Text 1470 --- Text: 'i already feel he is using us it feels weird because i havent even done anything there yet but i feel it coming like ministry coming at me' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i already feel he is using us it feels weird because i havent even done anything there yet but i feel it coming like ministry coming at me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i already feel he is using us it feels weird because i havent even done anything there yet but i feel it coming like ministry coming at me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fear Predicted Emotion: fear --------------------
100%|██████████| 10/10 [00:00<00:00, 16.64it/s] 50%|█████ | 5/10 [00:00<00:00, 12.52it/s]
--- Text 1471 --- Text: 'i did not care much about the number of viewers and the viewer ratings before but as the drama iris gained huge success i began to feel greedy' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i did not care much about the number of viewers and the viewer ratings before but as the drama iris gained huge success i began to feel greedy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion in this text is GRE Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i did not care much about the number of viewers and the viewer ratings before but as the drama iris gained huge success i began to feel greedy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: GREED Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.52it/s]
--- Text 1472 --- Text: 'i realize how much my little family leans on me and it felt so overwhelming and i feel so inadequate' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i realize how much my little family leans on me and it felt so overwhelming and i feel so inadequate What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i realize how much my little family leans on me and it felt so overwhelming and i feel so inadequate What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.24it/s]
--- Text 1473 --- Text: 'im feeling just a little bit pleased with myself' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im feeling just a little bit pleased with myself What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling just a little bit pleased with myself What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.68it/s]
--- Text 1474 --- Text: 'ive also been for a run which im feeling particularly virtuous about' True Emotion: joy --- Zero-Shot Prompting --- Prompt: ive also been for a run which im feeling particularly virtuous about What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: ive also been for a run which im feeling particularly virtuous about What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.47it/s]
--- Text 1475 --- Text: 'i am no longer even remotely ok with my body and i feel ugly to the person who swore to love me' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i am no longer even remotely ok with my body and i feel ugly to the person who swore to love me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am no longer even remotely ok with my body and i feel ugly to the person who swore to love me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness. Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.54it/s]
--- Text 1476 --- Text: 'i did feel things it was often just repressed fear and anxiety and distrust' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i did feel things it was often just repressed fear and anxiety and distrust What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i did feel things it was often just repressed fear and anxiety and distrust What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fear Predicted Emotion: fear --------------------
100%|██████████| 10/10 [00:00<00:00, 18.15it/s] 20%|██ | 2/10 [00:00<00:00, 9.27it/s]
--- Text 1477 --- Text: 'i just feel tender' True Emotion: love --- Zero-Shot Prompting --- Prompt: i just feel tender What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i just feel tender What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.27it/s] 30%|███ | 3/10 [00:00<00:00, 10.57it/s]
--- Text 1478 --- Text: 'i think one of the most important things is not to allow anything at all to make you feel fearful because fear and any of the other negative emotions pull down your vibration' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i think one of the most important things is not to allow anything at all to make you feel fearful because fear and any of the other negative emotions pull down your vibration What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i think one of the most important things is not to allow anything at all to make you feel fearful because fear and any of the other negative emotions pull down your vibration What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear Predicted Emotion: fear --------------------
100%|██████████| 10/10 [00:00<00:00, 17.07it/s] 50%|█████ | 5/10 [00:00<00:00, 12.82it/s]
--- Text 1479 --- Text: 'i made my way to class feeling a sense of fond connection with childhood only to discover i was without supplies which stirred other memories' True Emotion: love --- Zero-Shot Prompting --- Prompt: i made my way to class feeling a sense of fond connection with childhood only to discover i was without supplies which stirred other memories What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is nostalg Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i made my way to class feeling a sense of fond connection with childhood only to discover i was without supplies which stirred other memories What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.55it/s] 50%|█████ | 5/10 [00:00<00:00, 12.66it/s]
--- Text 1480 --- Text: 'i really feel and i know the devil hates that its always been something he could use against me and im determined not to let him' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i really feel and i know the devil hates that its always been something he could use against me and im determined not to let him What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is determination Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i really feel and i know the devil hates that its always been something he could use against me and im determined not to let him What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Determination Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.25it/s] 30%|███ | 3/10 [00:00<00:00, 11.12it/s]
--- Text 1481 --- Text: 'i feel for them when things happen and i get excited when things work out well for them' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel for them when things happen and i get excited when things work out well for them What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i feel for them when things happen and i get excited when things work out well for them What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.99it/s]
--- Text 1482 --- Text: 'i am feeling ok for my biostatistics course by my physiology course will be touchy' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am feeling ok for my biostatistics course by my physiology course will be touchy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling ok for my biostatistics course by my physiology course will be touchy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 8.65it/s]
--- Text 1483 --- Text: 'i feel that they ignored the systemic nature of a pattern of sexual abuse and mishandling of reports of sexual abuse in the service of understandably wishing to defend and protect a friend and his reputation' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel that they ignored the systemic nature of a pattern of sexual abuse and mishandling of reports of sexual abuse in the service of understandably wishing to defend and protect a friend and his reputation What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel that they ignored the systemic nature of a pattern of sexual abuse and mishandling of reports of sexual abuse in the service of understandably wishing to defend and protect a friend and his reputation What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
100%|██████████| 10/10 [00:00<00:00, 17.04it/s] 50%|█████ | 5/10 [00:00<00:00, 13.22it/s]
--- Text 1484 --- Text: 'i feel like i am doomed to a life of sleep obsession' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like i am doomed to a life of sleep obsession What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i feel like i am doomed to a life of sleep obsession What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.23it/s]
--- Text 1485 --- Text: 'i have had moments of feeling silently offended by egyptian youngsters who identified as egyptian even if they were born in the us labeling me as a white person even though they were in many ways more assimilated than me' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i have had moments of feeling silently offended by egyptian youngsters who identified as egyptian even if they were born in the us labeling me as a white person even though they were in many ways more assimilated than me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have had moments of feeling silently offended by egyptian youngsters who identified as egyptian even if they were born in the us labeling me as a white person even though they were in many ways more assimilated than me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.38it/s]
--- Text 1486 --- Text: 'i feel shocked that you d stoup to destinys child b' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i feel shocked that you d stoup to destinys child b What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel shocked that you d stoup to destinys child b What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: surprise Predicted Emotion: surprise --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.35it/s]
--- Text 1487 --- Text: 'i feel the need to explain myself and my thoughts in ways that are clever funny or maybe even insightful' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel the need to explain myself and my thoughts in ways that are clever funny or maybe even insightful What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel the need to explain myself and my thoughts in ways that are clever funny or maybe even insightful What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: clever Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.81it/s] 30%|███ | 3/10 [00:00<00:00, 10.40it/s]
--- Text 1488 --- Text: 'i would suggest volunteering to help people in need such as at the salvation army when you help others you learn to appreciate what you still have and feel worthwhile' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i would suggest volunteering to help people in need such as at the salvation army when you help others you learn to appreciate what you still have and feel worthwhile What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i would suggest volunteering to help people in need such as at the salvation army when you help others you learn to appreciate what you still have and feel worthwhile What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.87it/s] 30%|███ | 3/10 [00:00<00:00, 10.38it/s]
--- Text 1489 --- Text: 'i managed however to relax and enjoy the scenery feeling romantic and thoroughly enjoying our th anniversary cruise' True Emotion: love --- Zero-Shot Prompting --- Prompt: i managed however to relax and enjoy the scenery feeling romantic and thoroughly enjoying our th anniversary cruise What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i managed however to relax and enjoy the scenery feeling romantic and thoroughly enjoying our th anniversary cruise What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.58it/s]
--- Text 1490 --- Text: 'i sometimes feel like a damaged product' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i sometimes feel like a damaged product What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i sometimes feel like a damaged product What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 80%|████████ | 8/10 [00:00<00:00, 14.61it/s]
--- Text 1491 --- Text: 'i woke up feeling fine' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i woke up feeling fine What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i woke up feeling fine What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: i woke up feeling fine Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.94it/s] 30%|███ | 3/10 [00:00<00:00, 10.59it/s]
--- Text 1492 --- Text: 'i feel impatient with brian s prolonged assertion of his alien encounter but nobody other than the victim could truly relate to repercussion of being molested' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel impatient with brian s prolonged assertion of his alien encounter but nobody other than the victim could truly relate to repercussion of being molested What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i feel impatient with brian s prolonged assertion of his alien encounter but nobody other than the victim could truly relate to repercussion of being molested What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.72it/s]
--- Text 1493 --- Text: 'i can cope with his presence without feeling distressed if i can force myself into a quiet and resigned friendship' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i can cope with his presence without feeling distressed if i can force myself into a quiet and resigned friendship What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i can cope with his presence without feeling distressed if i can force myself into a quiet and resigned friendship What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.97it/s]
--- Text 1494 --- Text: 'i wasn t feeling well but no specific issue' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i wasn t feeling well but no specific issue What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i wasn t feeling well but no specific issue What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I wasn't feeling well but no Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.30it/s]
--- Text 1495 --- Text: 'i feel like an ungrateful ass a href http thisisntcuteanymore' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like an ungrateful ass a href http thisisntcuteanymore What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like an ungrateful ass a href http thisisntcuteanymore What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.03it/s] 30%|███ | 3/10 [00:00<00:00, 10.69it/s]
--- Text 1496 --- Text: 'i love how my customers leave the studio looking automatically refreshed and radiant and now with the product line everyone can feel gorgeous and confident' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i love how my customers leave the studio looking automatically refreshed and radiant and now with the product line everyone can feel gorgeous and confident What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i love how my customers leave the studio looking automatically refreshed and radiant and now with the product line everyone can feel gorgeous and confident What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.51it/s] 30%|███ | 3/10 [00:00<00:00, 11.10it/s]
--- Text 1497 --- Text: 'i feel they are frightened of fats' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel they are frightened of fats What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i feel they are frightened of fats What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.15it/s]
--- Text 1498 --- Text: 'i gotta say i m feeling a little slutty here' True Emotion: love --- Zero-Shot Prompting --- Prompt: i gotta say i m feeling a little slutty here What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i gotta say i m feeling a little slutty here What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sluttiness Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.11it/s]
--- Text 1499 --- Text: 'i feel like this is a way i can combine all of my creative outpourings into one thing' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like this is a way i can combine all of my creative outpourings into one thing What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like this is a way i can combine all of my creative outpourings into one thing What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel like this is a way I Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.34it/s]
--- Text 1500 --- Text: 'i found myself looking at the clock and starting to feel irritated' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i found myself looking at the clock and starting to feel irritated What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i found myself looking at the clock and starting to feel irritated What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: irritation Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.78it/s]
--- Text 1501 --- Text: 'im feeling just a little proud' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im feeling just a little proud What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling just a little proud What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: pride. Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.62it/s]
--- Text 1502 --- Text: 'i am back to feeling determined' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am back to feeling determined What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am back to feeling determined What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: determined Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.61it/s]
--- Text 1503 --- Text: 'i am off on wednesday to a postgraduate open day but there will be plenty to write about the rest of the week i feel sure' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am off on wednesday to a postgraduate open day but there will be plenty to write about the rest of the week i feel sure What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am off on wednesday to a postgraduate open day but there will be plenty to write about the rest of the week i feel sure What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.96it/s] 40%|████ | 4/10 [00:00<00:00, 12.03it/s]
--- Text 1504 --- Text: 'i feel a little low about being in japan and i always feel pangs of guilt when i fail to appreciate my living situation and decisions' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel a little low about being in japan and i always feel pangs of guilt when i fail to appreciate my living situation and decisions What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel a little low about being in japan and i always feel pangs of guilt when i fail to appreciate my living situation and decisions What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.28it/s]
--- Text 1505 --- Text: 'i feel dirty watching this series and you can tell how the series is trying to induce false emotions in the viewer' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel dirty watching this series and you can tell how the series is trying to induce false emotions in the viewer What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel dirty watching this series and you can tell how the series is trying to induce false emotions in the viewer What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel dirty watching this series and you Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.17it/s]
--- Text 1506 --- Text: 'i just sat there in my group feeling really depressed because my book just had to go missing at this time' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i just sat there in my group feeling really depressed because my book just had to go missing at this time What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i just sat there in my group feeling really depressed because my book just had to go missing at this time What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.15it/s]
--- Text 1507 --- Text: 'i already feel him kicking my ribs making it harder to breath sometimes and taking over precious space where my stomach once was' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i already feel him kicking my ribs making it harder to breath sometimes and taking over precious space where my stomach once was What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i already feel him kicking my ribs making it harder to breath sometimes and taking over precious space where my stomach once was What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.47it/s] 50%|█████ | 5/10 [00:00<00:00, 13.55it/s]
--- Text 1508 --- Text: 'i am feeling irritated anxious which is often then i dont even like my kids touching me' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i am feeling irritated anxious which is often then i dont even like my kids touching me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anxiety Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling irritated anxious which is often then i dont even like my kids touching me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Anxiety Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 60%|██████ | 6/10 [00:00<00:00, 13.70it/s]
--- Text 1509 --- Text: 'ive been getting have been making me feel suspicious like its someone elses great work they are trying to get credit for' True Emotion: fear --- Zero-Shot Prompting --- Prompt: ive been getting have been making me feel suspicious like its someone elses great work they are trying to get credit for What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: ive been getting have been making me feel suspicious like its someone elses great work they are trying to get credit for What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Suspicion Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.68it/s]
--- Text 1510 --- Text: 'i decide that picking the easy route would get me nowhere and i feel like other people want me tortured so i follow the blue path' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i decide that picking the easy route would get me nowhere and i feel like other people want me tortured so i follow the blue path What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i decide that picking the easy route would get me nowhere and i feel like other people want me tortured so i follow the blue path What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
100%|██████████| 10/10 [00:00<00:00, 17.49it/s] 40%|████ | 4/10 [00:00<00:00, 12.70it/s]
--- Text 1511 --- Text: 'i feel appalled that i took advantage of my old friend s kindness' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel appalled that i took advantage of my old friend s kindness What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel appalled that i took advantage of my old friend s kindness What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: appalled Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.71it/s]
--- Text 1512 --- Text: 'ive been feeling a bit messy but im hoping this fresh look will help me figure out a better way to deal' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: ive been feeling a bit messy but im hoping this fresh look will help me figure out a better way to deal What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: ive been feeling a bit messy but im hoping this fresh look will help me figure out a better way to deal What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.54it/s] 40%|████ | 4/10 [00:00<00:00, 11.87it/s]
--- Text 1513 --- Text: 'i am really excited because i didnt really stand out a lot in high school i was just slightly above average and decently friendly and i feel like delivering this speech will be a cool legacy i can leave on the school' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am really excited because i didnt really stand out a lot in high school i was just slightly above average and decently friendly and i feel like delivering this speech will be a cool legacy i can leave on the school What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am really excited because i didnt really stand out a lot in high school i was just slightly above average and decently friendly and i feel like delivering this speech will be a cool legacy i can leave on the school What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.93it/s]
--- Text 1514 --- Text: 'i wish i could do that chinese bite on my finger so you feel the pain miles away thing but upon some reflection perhaps that wouldnt be very considerate' True Emotion: love --- Zero-Shot Prompting --- Prompt: i wish i could do that chinese bite on my finger so you feel the pain miles away thing but upon some reflection perhaps that wouldnt be very considerate What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i wish i could do that chinese bite on my finger so you feel the pain miles away thing but upon some reflection perhaps that wouldnt be very considerate What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.90it/s]
--- Text 1515 --- Text: 'i also tried after all that frustration when i was feeling none too energetic for more problems to work on the respirometry stuff which is going to be a huge nightmare' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i also tried after all that frustration when i was feeling none too energetic for more problems to work on the respirometry stuff which is going to be a huge nightmare What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i also tried after all that frustration when i was feeling none too energetic for more problems to work on the respirometry stuff which is going to be a huge nightmare What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fear Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.07it/s]
--- Text 1516 --- Text: 'i feel even more determined to keep up our once per week tradition that my son started' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel even more determined to keep up our once per week tradition that my son started What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel even more determined to keep up our once per week tradition that my son started What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Determination Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.80it/s] 50%|█████ | 5/10 [00:00<00:00, 12.94it/s]
--- Text 1517 --- Text: 'i feel the need to compensate with only the most perfect jacket as a topper to cover where my boobs do not fulfill their duties' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel the need to compensate with only the most perfect jacket as a topper to cover where my boobs do not fulfill their duties What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel the need to compensate with only the most perfect jacket as a topper to cover where my boobs do not fulfill their duties What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.95it/s]
--- Text 1518 --- Text: 'i could have expected in every way and i was feeling a bit overwhelmed at that point how quickly life changed in the past weeks' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i could have expected in every way and i was feeling a bit overwhelmed at that point how quickly life changed in the past weeks What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i could have expected in every way and i was feeling a bit overwhelmed at that point how quickly life changed in the past weeks What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.43it/s]
--- Text 1519 --- Text: 'i feel like it might just be ok' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like it might just be ok What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like it might just be ok What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel like it might just be ok Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.48it/s] 50%|█████ | 5/10 [00:00<00:00, 13.56it/s]
--- Text 1520 --- Text: 'i feel like these unfortunate events fit in with my thought quote i posted above' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like these unfortunate events fit in with my thought quote i posted above What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel like these unfortunate events fit in with my thought quote i posted above What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.37it/s]
--- Text 1521 --- Text: 'i am feeling so hyper and bouncy' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am feeling so hyper and bouncy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling so hyper and bouncy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.55it/s]
--- Text 1522 --- Text: 'i doubt that makes any sense to any one but me when i feel emotional the metaphors come tumbling out like a rock slide see' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i doubt that makes any sense to any one but me when i feel emotional the metaphors come tumbling out like a rock slide see What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i doubt that makes any sense to any one but me when i feel emotional the metaphors come tumbling out like a rock slide see What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.24it/s] 50%|█████ | 5/10 [00:00<00:00, 12.43it/s]
--- Text 1523 --- Text: 'i didnt want to feel any pain an hour later they decided to start that up and shortly after that they broke my water' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i didnt want to feel any pain an hour later they decided to start that up and shortly after that they broke my water What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i didnt want to feel any pain an hour later they decided to start that up and shortly after that they broke my water What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.01it/s]
--- Text 1524 --- Text: 'i remember being appalled feeling personally insulted that they could have thought that i would listen to something as vulgar as the bee gees' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i remember being appalled feeling personally insulted that they could have thought that i would listen to something as vulgar as the bee gees What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i remember being appalled feeling personally insulted that they could have thought that i would listen to something as vulgar as the bee gees What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Appalled Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.65it/s]
--- Text 1525 --- Text: 'i look at this photo i feel gentle and calm my makeup is still soft but its warmer and i feel it harmonizes better with the warm colours of these flowers' True Emotion: love --- Zero-Shot Prompting --- Prompt: i look at this photo i feel gentle and calm my makeup is still soft but its warmer and i feel it harmonizes better with the warm colours of these flowers What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i look at this photo i feel gentle and calm my makeup is still soft but its warmer and i feel it harmonizes better with the warm colours of these flowers What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: calm Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.66it/s]
--- Text 1526 --- Text: 'i know i haven t met most of you in person but i feel so honored to be able to come together with you as we grow closer to god' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i know i haven t met most of you in person but i feel so honored to be able to come together with you as we grow closer to god What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i know i haven t met most of you in person but i feel so honored to be able to come together with you as we grow closer to god What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.37it/s]
--- Text 1527 --- Text: 'im feeling especially brave and tough ill have to tell the story of scattering his ashes' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im feeling especially brave and tough ill have to tell the story of scattering his ashes What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling especially brave and tough ill have to tell the story of scattering his ashes What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.40it/s]
--- Text 1528 --- Text: 'i still feel like im being punished' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i still feel like im being punished What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i still feel like im being punished What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.28it/s] 20%|██ | 2/10 [00:00<00:00, 9.44it/s]
--- Text 1529 --- Text: 'i feel nervous about leaving my kid with you' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel nervous about leaving my kid with you What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i feel nervous about leaving my kid with you What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear. Predicted Emotion: fear --------------------
100%|██████████| 10/10 [00:00<00:00, 17.53it/s] 40%|████ | 4/10 [00:00<00:00, 12.90it/s]
--- Text 1530 --- Text: 'i feel so contented with my job' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel so contented with my job What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is JO Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so contented with my job What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Contentment Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.52it/s]
--- Text 1531 --- Text: 'i feel furious at love because i really thought it was better than that' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel furious at love because i really thought it was better than that What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel furious at love because i really thought it was better than that What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.87it/s]
--- Text 1532 --- Text: 'ill get mopey about what occured in the past but the frequency of that has been decreasing in a logarythmic scale and even then its only when im feeling self doubtful which is also occuring less' True Emotion: fear --- Zero-Shot Prompting --- Prompt: ill get mopey about what occured in the past but the frequency of that has been decreasing in a logarythmic scale and even then its only when im feeling self doubtful which is also occuring less What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: ill get mopey about what occured in the past but the frequency of that has been decreasing in a logarythmic scale and even then its only when im feeling self doubtful which is also occuring less What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.15it/s]
--- Text 1533 --- Text: 'i feel useful and valued and that is fundamental for me' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel useful and valued and that is fundamental for me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel useful and valued and that is fundamental for me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.35it/s] 40%|████ | 4/10 [00:00<00:00, 10.40it/s]
--- Text 1534 --- Text: 'i actually was in a meeting last week where someone yelled at an older lady because her phone rang i felt terrible for her your boss treats you unfairly or in this case someone makes you feel you are not worth anything is only allowing those who offended to steal your joy' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i actually was in a meeting last week where someone yelled at an older lady because her phone rang i felt terrible for her your boss treats you unfairly or in this case someone makes you feel you are not worth anything is only allowing those who offended to steal your joy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i actually was in a meeting last week where someone yelled at an older lady because her phone rang i felt terrible for her your boss treats you unfairly or in this case someone makes you feel you are not worth anything is only allowing those who offended to steal your joy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.27it/s] 60%|██████ | 6/10 [00:00<00:00, 14.26it/s]
--- Text 1535 --- Text: 'i don t have to go around questioning broads or feeling suspicious' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i don t have to go around questioning broads or feeling suspicious What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i don t have to go around questioning broads or feeling suspicious What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Suspicion Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.83it/s]
--- Text 1536 --- Text: 'i am feeling bitchy this evening' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i am feeling bitchy this evening What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling bitchy this evening What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: bitchy Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.61it/s]
--- Text 1537 --- Text: 'i feel so relaxed and happy and i have discovered that i love having projects that take a few months to do but in the end i will have an actual product to show for' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel so relaxed and happy and i have discovered that i love having projects that take a few months to do but in the end i will have an actual product to show for What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so relaxed and happy and i have discovered that i love having projects that take a few months to do but in the end i will have an actual product to show for What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.70it/s]
--- Text 1538 --- Text: 'i like the fresh feeling of sweet he gave me' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i like the fresh feeling of sweet he gave me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i like the fresh feeling of sweet he gave me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.96it/s]
--- Text 1539 --- Text: 'i feel so wiggy about everything maybe ill just drop my virtuous lib stance and join georgie porgie' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel so wiggy about everything maybe ill just drop my virtuous lib stance and join georgie porgie What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so wiggy about everything maybe ill just drop my virtuous lib stance and join georgie porgie What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.48it/s] 100%|██████████| 10/10 [00:00<00:00, 17.27it/s]
--- Text 1540 --- Text: 'ive posted ive been feeling the casual vibe when it comes to dressing' True Emotion: joy --- Zero-Shot Prompting --- Prompt: ive posted ive been feeling the casual vibe when it comes to dressing What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: ive posted ive been feeling the casual vibe when it comes to dressing What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: ive posted ive been feeling the cas Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.27it/s] 50%|█████ | 5/10 [00:00<00:00, 12.92it/s]
--- Text 1541 --- Text: 'i ended the podcast feeling not depressed exactly but like i still didn t have a concrete answer for how to strike that balance that self help authors love to talk about' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i ended the podcast feeling not depressed exactly but like i still didn t have a concrete answer for how to strike that balance that self help authors love to talk about What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i ended the podcast feeling not depressed exactly but like i still didn t have a concrete answer for how to strike that balance that self help authors love to talk about What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.72it/s]
--- Text 1542 --- Text: 'im not sure why but im just feeling delicate' True Emotion: love --- Zero-Shot Prompting --- Prompt: im not sure why but im just feeling delicate What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im not sure why but im just feeling delicate What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: delicate Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.90it/s] 30%|███ | 3/10 [00:00<00:00, 10.53it/s]
--- Text 1543 --- Text: 'i feel the vile rising in my throat flipping up the lid on the toilet to let it out' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel the vile rising in my throat flipping up the lid on the toilet to let it out What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i feel the vile rising in my throat flipping up the lid on the toilet to let it out What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.16it/s]
--- Text 1544 --- Text: 'i can feel the rebellious spirit already' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i can feel the rebellious spirit already What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i can feel the rebellious spirit already What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.48it/s]
--- Text 1545 --- Text: 'i feel honored to be part of the culinary community here' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel honored to be part of the culinary community here What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel honored to be part of the culinary community here What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.43it/s]
--- Text 1546 --- Text: 'i feel no shame whatsoever in longing for iron man at my local cineworld' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel no shame whatsoever in longing for iron man at my local cineworld What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel no shame whatsoever in longing for iron man at my local cineworld What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.32it/s] 100%|██████████| 10/10 [00:00<00:00, 17.28it/s]
--- Text 1547 --- Text: 'i feel ungrateful for wanting more but the truth is' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel ungrateful for wanting more but the truth is What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel ungrateful for wanting more but the truth is What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: i feel ungrateful for wanting more Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.47it/s]
--- Text 1548 --- Text: 'i feel sorta vain' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel sorta vain What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel sorta vain What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel sorta vain The Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.26it/s] 100%|██████████| 10/10 [00:00<00:00, 17.27it/s]
--- Text 1549 --- Text: 'i feel it like you target blank class di title bookmark on del' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel it like you target blank class di title bookmark on del What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel it like you target blank class di title bookmark on del What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel it like you target blank class Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.79it/s]
--- Text 1550 --- Text: 'i feel like my fish might be moderately more intelligent than most fish as ive noticed they have a tendency to go to the corner of the tank closest to the container of fish food and just stare at it' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like my fish might be moderately more intelligent than most fish as ive noticed they have a tendency to go to the corner of the tank closest to the container of fish food and just stare at it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like my fish might be moderately more intelligent than most fish as ive noticed they have a tendency to go to the corner of the tank closest to the container of fish food and just stare at it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.82it/s]
--- Text 1551 --- Text: 'i was feeling clever so i changed the last line to cookies for you' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i was feeling clever so i changed the last line to cookies for you What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was feeling clever so i changed the last line to cookies for you What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I was feeling clever so I changed the Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.47it/s] 50%|█████ | 5/10 [00:00<00:00, 13.55it/s]
--- Text 1552 --- Text: 'i will admit with the joy of cooking there are also times where you feel defeated' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i will admit with the joy of cooking there are also times where you feel defeated What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is defeat. Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i will admit with the joy of cooking there are also times where you feel defeated What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.95it/s]
--- Text 1553 --- Text: 'i am finally starting to feel like i have a real life here in san vicente and i am no longer on a strange confusing extended vacation' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i am finally starting to feel like i have a real life here in san vicente and i am no longer on a strange confusing extended vacation What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am finally starting to feel like i have a real life here in san vicente and i am no longer on a strange confusing extended vacation What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.68it/s] 30%|███ | 3/10 [00:00<00:00, 11.03it/s]
--- Text 1554 --- Text: 'i feel like even though things arent quite resolved with my major i have peace about it still' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like even though things arent quite resolved with my major i have peace about it still What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is peace. Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like even though things arent quite resolved with my major i have peace about it still What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Peace Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.35it/s]
--- Text 1555 --- Text: 'i feel ashamed of you' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel ashamed of you What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel ashamed of you What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: ashamed Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.00it/s]
--- Text 1556 --- Text: 'i feel fucking woeful looking at the other girls' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel fucking woeful looking at the other girls What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel fucking woeful looking at the other girls What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.41it/s]
--- Text 1557 --- Text: 'i feel really irritated when i talk about my problems and people start talking about theirs' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel really irritated when i talk about my problems and people start talking about theirs What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel really irritated when i talk about my problems and people start talking about theirs What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: irritation Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.93it/s]
--- Text 1558 --- Text: 'i was feeling homesick for the annual easter breakfast and service at church this morning at when we left to hike up mt precipice for the sunrise' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i was feeling homesick for the annual easter breakfast and service at church this morning at when we left to hike up mt precipice for the sunrise What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was feeling homesick for the annual easter breakfast and service at church this morning at when we left to hike up mt precipice for the sunrise What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.50it/s] 40%|████ | 4/10 [00:00<00:00, 12.72it/s]
--- Text 1559 --- Text: 'i don t know about you but it makes me feel generous' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i don t know about you but it makes me feel generous What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i don t know about you but it makes me feel generous What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.73it/s]
--- Text 1560 --- Text: 'im already feeling pretty festive this year even though its only november' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im already feeling pretty festive this year even though its only november What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im already feeling pretty festive this year even though its only november What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.76it/s] 40%|████ | 4/10 [00:00<00:00, 12.74it/s]
--- Text 1561 --- Text: 'i feel helpless to regain a safe feeling' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel helpless to regain a safe feeling What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i feel helpless to regain a safe feeling What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear Predicted Emotion: fear --------------------
100%|██████████| 10/10 [00:00<00:00, 16.64it/s] 40%|████ | 4/10 [00:00<00:00, 11.67it/s]
--- Text 1562 --- Text: 'i was still feeling hesitant last night but when i woke up i found that i had made my decision and that the slatebook somewhat to my own surprise was what i wanted' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i was still feeling hesitant last night but when i woke up i found that i had made my decision and that the slatebook somewhat to my own surprise was what i wanted What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion in this text is surprise. Predicted Emotion: surprise --- Constraint-Based Prompting --- Prompt: i was still feeling hesitant last night but when i woke up i found that i had made my decision and that the slatebook somewhat to my own surprise was what i wanted What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Surprise Predicted Emotion: surprise --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.47it/s]
--- Text 1563 --- Text: 'i feel should be determined by me and my actions and nobody or nothing else' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel should be determined by me and my actions and nobody or nothing else What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel should be determined by me and my actions and nobody or nothing else What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel should be determined by me and Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.27it/s]
--- Text 1564 --- Text: 'i thought i would feel apprehensive about it i was surprisingly comfortable while he was gone' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i thought i would feel apprehensive about it i was surprisingly comfortable while he was gone What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i thought i would feel apprehensive about it i was surprisingly comfortable while he was gone What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Surprise Predicted Emotion: surprise --------------------
100%|██████████| 10/10 [00:00<00:00, 17.29it/s] 50%|█████ | 5/10 [00:00<00:00, 13.37it/s]
--- Text 1565 --- Text: 'i feel drained and i am physically sore from the work i did' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel drained and i am physically sore from the work i did What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel drained and i am physically sore from the work i did What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.20it/s] 50%|█████ | 5/10 [00:00<00:00, 13.55it/s]
--- Text 1566 --- Text: 'i sure did appreciate her asking instead of just feeling mad or hurt because she thought i was' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i sure did appreciate her asking instead of just feeling mad or hurt because she thought i was What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i sure did appreciate her asking instead of just feeling mad or hurt because she thought i was What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Appreciation Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.74it/s] 40%|████ | 4/10 [00:00<00:00, 11.86it/s]
--- Text 1567 --- Text: 'i litsen to his music i feel so much pride to think i gave birth to this amazingly talented child who one day when he was in his early teens picked up a guitar and just played it like it was second nature' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i litsen to his music i feel so much pride to think i gave birth to this amazingly talented child who one day when he was in his early teens picked up a guitar and just played it like it was second nature What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i litsen to his music i feel so much pride to think i gave birth to this amazingly talented child who one day when he was in his early teens picked up a guitar and just played it like it was second nature What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.60it/s]
--- Text 1568 --- Text: 'i do not want others to feel unhappy just because they have to accommodate to me' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i do not want others to feel unhappy just because they have to accommodate to me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i do not want others to feel unhappy just because they have to accommodate to me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.78it/s] 50%|█████ | 5/10 [00:00<00:00, 12.53it/s]
--- Text 1569 --- Text: 'i am a prolific writer in my fandom but do not feel that i am as highly respected from fellow writers as i once was because i do write so much and as often as most people cannot' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am a prolific writer in my fandom but do not feel that i am as highly respected from fellow writers as i once was because i do write so much and as often as most people cannot What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am a prolific writer in my fandom but do not feel that i am as highly respected from fellow writers as i once was because i do write so much and as often as most people cannot What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.26it/s]
--- Text 1570 --- Text: 'i feel lonely who make me feel special when i feel useless who are always kind and sweet to me' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel lonely who make me feel special when i feel useless who are always kind and sweet to me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel lonely who make me feel special when i feel useless who are always kind and sweet to me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.04it/s]
--- Text 1571 --- Text: 'i have a feeling i will be dissatisfied several times' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i have a feeling i will be dissatisfied several times What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have a feeling i will be dissatisfied several times What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I have a feeling I will be diss Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.53it/s]
--- Text 1572 --- Text: 'i feel a gentle tap and find flower child watching me her expression grave' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel a gentle tap and find flower child watching me her expression grave What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel a gentle tap and find flower child watching me her expression grave What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Grave Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.70it/s]
--- Text 1573 --- Text: 'im feeling restless and frustrated right now in that way specific to people who are recovering from illness or injury' True Emotion: fear --- Zero-Shot Prompting --- Prompt: im feeling restless and frustrated right now in that way specific to people who are recovering from illness or injury What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling restless and frustrated right now in that way specific to people who are recovering from illness or injury What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: frustration Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.65it/s]
--- Text 1574 --- Text: 'i feel honoured that such a great man claims me as his friend' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel honoured that such a great man claims me as his friend What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel honoured that such a great man claims me as his friend What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 10.50it/s]
--- Text 1575 --- Text: 'i will burn for you feel pain for you i will twist the knife and bleed my aching heart and tear it apart i will lie for you beg and steal for you i will crawl on hands and knees until you see youre just like me' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i will burn for you feel pain for you i will twist the knife and bleed my aching heart and tear it apart i will lie for you beg and steal for you i will crawl on hands and knees until you see youre just like me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i will burn for you feel pain for you i will twist the knife and bleed my aching heart and tear it apart i will lie for you beg and steal for you i will crawl on hands and knees until you see youre just like me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.43it/s] 50%|█████ | 5/10 [00:00<00:00, 13.55it/s]
--- Text 1576 --- Text: 'i feel uncomfortable telling others what is on the girls wish lists' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel uncomfortable telling others what is on the girls wish lists What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel uncomfortable telling others what is on the girls wish lists What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.52it/s]
--- Text 1577 --- Text: 'i cant do a simple math question and guess what i broke down in front of my tuition teacher whom i have known for almost years now feeling pressured and i feel so bad bout myself' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i cant do a simple math question and guess what i broke down in front of my tuition teacher whom i have known for almost years now feeling pressured and i feel so bad bout myself What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i cant do a simple math question and guess what i broke down in front of my tuition teacher whom i have known for almost years now feeling pressured and i feel so bad bout myself What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.70it/s] 20%|██ | 2/10 [00:00<00:00, 9.36it/s]
--- Text 1578 --- Text: 'i feel doubtful in my abilities' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel doubtful in my abilities What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i feel doubtful in my abilities What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: doubt. Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.91it/s]
--- Text 1579 --- Text: 'ive been feeling very listless lately' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: ive been feeling very listless lately What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: ive been feeling very listless lately What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.14it/s] 30%|███ | 3/10 [00:00<00:00, 10.37it/s]
--- Text 1580 --- Text: 'i said at the beginning i have combination oily skin but i still use this around once a week because my skin feels absolutely gorgeous the morning after applying it' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i said at the beginning i have combination oily skin but i still use this around once a week because my skin feels absolutely gorgeous the morning after applying it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i said at the beginning i have combination oily skin but i still use this around once a week because my skin feels absolutely gorgeous the morning after applying it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.62it/s]
--- Text 1581 --- Text: 'i have to be honest and say that the first two chapters sort of overwhelmed me and i wasnt sure that i was going to be able to follow everything and was feeling kind of dumb' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i have to be honest and say that the first two chapters sort of overwhelmed me and i wasnt sure that i was going to be able to follow everything and was feeling kind of dumb What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have to be honest and say that the first two chapters sort of overwhelmed me and i wasnt sure that i was going to be able to follow everything and was feeling kind of dumb What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I understand that the first two chapters Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.93it/s]
--- Text 1582 --- Text: 'i lay here typing this hate blog entry that no one would read although i want the whole world to read and praise me like dickens i feel so miserable' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i lay here typing this hate blog entry that no one would read although i want the whole world to read and praise me like dickens i feel so miserable What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i lay here typing this hate blog entry that no one would read although i want the whole world to read and praise me like dickens i feel so miserable What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.59it/s]
--- Text 1583 --- Text: 'i can t look at for too long without feeling depressed' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i can t look at for too long without feeling depressed What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i can t look at for too long without feeling depressed What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.35it/s]
--- Text 1584 --- Text: 'i am not feeling so generous and he is sent to the sofa where he glares at me for the next six hours' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am not feeling so generous and he is sent to the sofa where he glares at me for the next six hours What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am not feeling so generous and he is sent to the sofa where he glares at me for the next six hours What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
100%|██████████| 10/10 [00:00<00:00, 16.33it/s] 50%|█████ | 5/10 [00:00<00:00, 12.57it/s]
--- Text 1585 --- Text: 'i don t really believe because i walked through all the water stops in my first marathon and i actually don t think that walking is bad but dammit i was feeling stubborn and i wanted to get home and needed to be motivated by something' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i don t really believe because i walked through all the water stops in my first marathon and i actually don t think that walking is bad but dammit i was feeling stubborn and i wanted to get home and needed to be motivated by something What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i don t really believe because i walked through all the water stops in my first marathon and i actually don t think that walking is bad but dammit i was feeling stubborn and i wanted to get home and needed to be motivated by something What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.24it/s] 40%|████ | 4/10 [00:00<00:00, 11.49it/s]
--- Text 1586 --- Text: 'i firmly believe that the only way to go about this craft is to write the book that you feel passionate about and not to worry about finding the book that the mass audience desires' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i firmly believe that the only way to go about this craft is to write the book that you feel passionate about and not to worry about finding the book that the mass audience desires What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i firmly believe that the only way to go about this craft is to write the book that you feel passionate about and not to worry about finding the book that the mass audience desires What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.33it/s] 40%|████ | 4/10 [00:00<00:00, 12.37it/s]
--- Text 1587 --- Text: 'i always get that feeling that i got one kids more than another and it is vicious' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i always get that feeling that i got one kids more than another and it is vicious What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i always get that feeling that i got one kids more than another and it is vicious What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.60it/s] 100%|██████████| 10/10 [00:00<00:00, 17.45it/s]
--- Text 1588 --- Text: 'i do that i feel ashamed of' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i do that i feel ashamed of What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is shame. Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i do that i feel ashamed of What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I do that I feel ashamed of Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.75it/s] 100%|██████████| 10/10 [00:00<00:00, 16.35it/s]
--- Text 1589 --- Text: 'i don t want to hurt anybody s feelings and i certainly don t want to betray any amount of trust but i do want to entertain and i do want to be faithful to myself my thoughts and the topics at hand' True Emotion: love --- Zero-Shot Prompting --- Prompt: i don t want to hurt anybody s feelings and i certainly don t want to betray any amount of trust but i do want to entertain and i do want to be faithful to myself my thoughts and the topics at hand What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i don t want to hurt anybody s feelings and i certainly don t want to betray any amount of trust but i do want to entertain and i do want to be faithful to myself my thoughts and the topics at hand What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: The emotion of this text is: Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.01it/s]
--- Text 1590 --- Text: 'i feel as though i have merely accepted what has been done and that no matter what time has gone by it will always be with me' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel as though i have merely accepted what has been done and that no matter what time has gone by it will always be with me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel as though i have merely accepted what has been done and that no matter what time has gone by it will always be with me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.75it/s] 100%|██████████| 10/10 [00:00<00:00, 17.29it/s]
--- Text 1591 --- Text: 'i was an year old girl who just wanted to feel important' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i was an year old girl who just wanted to feel important What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was an year old girl who just wanted to feel important What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: i was an year old girl who just Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.61it/s] 40%|████ | 4/10 [00:00<00:00, 11.60it/s]
--- Text 1592 --- Text: 'i see all my friends posting pics and status updates of where they are going or what they are doing and i feel a bit jealous knowing it s not something i can get out and enjoy' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i see all my friends posting pics and status updates of where they are going or what they are doing and i feel a bit jealous knowing it s not something i can get out and enjoy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i see all my friends posting pics and status updates of where they are going or what they are doing and i feel a bit jealous knowing it s not something i can get out and enjoy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.11it/s] 20%|██ | 2/10 [00:00<00:00, 9.77it/s]
--- Text 1593 --- Text: 'i have strong feelings about being faithful' True Emotion: love --- Zero-Shot Prompting --- Prompt: i have strong feelings about being faithful What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i have strong feelings about being faithful What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.76it/s]
--- Text 1594 --- Text: 'i suppose we all feel a little inhibited when it comes to picking up the phone and calling someone we re not very close to anymore' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i suppose we all feel a little inhibited when it comes to picking up the phone and calling someone we re not very close to anymore What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i suppose we all feel a little inhibited when it comes to picking up the phone and calling someone we re not very close to anymore What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.69it/s]
--- Text 1595 --- Text: 'i used that word just to feel the energy of anticipation as people prepare their delicious meals and gather their needed tools for when they invite their loved ones into their homes' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i used that word just to feel the energy of anticipation as people prepare their delicious meals and gather their needed tools for when they invite their loved ones into their homes What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i used that word just to feel the energy of anticipation as people prepare their delicious meals and gather their needed tools for when they invite their loved ones into their homes What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.55it/s]
--- Text 1596 --- Text: 'i might do so simply because i couldnt keep my mouth shut makes me feel terrible' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i might do so simply because i couldnt keep my mouth shut makes me feel terrible What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i might do so simply because i couldnt keep my mouth shut makes me feel terrible What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.16it/s] 40%|████ | 4/10 [00:00<00:00, 12.44it/s]
--- Text 1597 --- Text: 'i feel just an on going dull pain for a fews hours or a day in my chest' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel just an on going dull pain for a fews hours or a day in my chest What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel just an on going dull pain for a fews hours or a day in my chest What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.10it/s] 40%|████ | 4/10 [00:00<00:00, 12.45it/s]
--- Text 1598 --- Text: 'i see people who physically resemble me i feel confident to strike up conversations with strangers' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i see people who physically resemble me i feel confident to strike up conversations with strangers What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is confidence. Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i see people who physically resemble me i feel confident to strike up conversations with strangers What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.90it/s]
--- Text 1599 --- Text: 'im feeling a bit grouchy today' True Emotion: anger --- Zero-Shot Prompting --- Prompt: im feeling a bit grouchy today What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling a bit grouchy today What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: grouchiness. Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.50it/s] 50%|█████ | 5/10 [00:00<00:00, 13.13it/s]
--- Text 1600 --- Text: 'i feel so damn curious with what this blond doctor plan to do this night' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i feel so damn curious with what this blond doctor plan to do this night What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is curiosity. Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so damn curious with what this blond doctor plan to do this night What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Curiosity Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.66it/s]
--- Text 1601 --- Text: 'i sit up and i feel awful about it as miles starts feeling up whoever s pants under his back for a cigarette box' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i sit up and i feel awful about it as miles starts feeling up whoever s pants under his back for a cigarette box What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i sit up and i feel awful about it as miles starts feeling up whoever s pants under his back for a cigarette box What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.00it/s] 100%|██████████| 10/10 [00:00<00:00, 17.06it/s]
--- Text 1602 --- Text: 'i dont know it if is the freshness of both but i feel more energetic during these seasons' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i dont know it if is the freshness of both but i feel more energetic during these seasons What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i dont know it if is the freshness of both but i feel more energetic during these seasons What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I don't know if it is Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.58it/s]
--- Text 1603 --- Text: 'im feeling cranky a href http doingaone eighty' True Emotion: anger --- Zero-Shot Prompting --- Prompt: im feeling cranky a href http doingaone eighty What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling cranky a href http doingaone eighty What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: crankiness Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.56it/s]
--- Text 1604 --- Text: 'i feel its sad but im okay with it im happy i had done it even though it hurts a little' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel its sad but im okay with it im happy i had done it even though it hurts a little What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel its sad but im okay with it im happy i had done it even though it hurts a little What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.41it/s] 40%|████ | 4/10 [00:00<00:00, 12.72it/s]
--- Text 1605 --- Text: 'i feel he is a terrific actor' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel he is a terrific actor What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: love Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i feel he is a terrific actor What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.95it/s]
--- Text 1606 --- Text: 'i feel like everythings going to happen with out me and that ive been disillusioned this whole time' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like everythings going to happen with out me and that ive been disillusioned this whole time What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like everythings going to happen with out me and that ive been disillusioned this whole time What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: disillusionment. Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.37it/s] 40%|████ | 4/10 [00:00<00:00, 12.28it/s]
--- Text 1607 --- Text: 'i feel restless in my own pursuits' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel restless in my own pursuits What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is restless Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel restless in my own pursuits What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: restlessness. Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.94it/s]
--- Text 1608 --- Text: 'i felt it had a slight bitterness in the finish that detracted from its oily mouthfeel and sweet entry' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i felt it had a slight bitterness in the finish that detracted from its oily mouthfeel and sweet entry What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i felt it had a slight bitterness in the finish that detracted from its oily mouthfeel and sweet entry What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Bitterness Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.69it/s]
--- Text 1609 --- Text: 'i woke up and felt sad all over again but that was quickly replaced with a feeling that reassured me things will work themselves out on their own time' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i woke up and felt sad all over again but that was quickly replaced with a feeling that reassured me things will work themselves out on their own time What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i woke up and felt sad all over again but that was quickly replaced with a feeling that reassured me things will work themselves out on their own time What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.37it/s] 50%|█████ | 5/10 [00:00<00:00, 11.51it/s]
--- Text 1610 --- Text: 'i feel quite reluctant to pick up a dance with dragons book because once i m done with that who knows how long i d have to wait for martin to finish his next installment it took him years to release a dance with dragons after a feast for crows' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel quite reluctant to pick up a dance with dragons book because once i m done with that who knows how long i d have to wait for martin to finish his next installment it took him years to release a dance with dragons after a feast for crows What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i feel quite reluctant to pick up a dance with dragons book because once i m done with that who knows how long i d have to wait for martin to finish his next installment it took him years to release a dance with dragons after a feast for crows What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.74it/s]
--- Text 1611 --- Text: 'i was trying to demonstrate that i understood what she was feeling but she was very alarmed and worried for my safety' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i was trying to demonstrate that i understood what she was feeling but she was very alarmed and worried for my safety What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was trying to demonstrate that i understood what she was feeling but she was very alarmed and worried for my safety What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear Predicted Emotion: fear --------------------
100%|██████████| 10/10 [00:00<00:00, 17.06it/s] 40%|████ | 4/10 [00:00<00:00, 12.68it/s]
--- Text 1612 --- Text: 'i feel like he s a lot more playful open with me than other girls i know he s friends with' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like he s a lot more playful open with me than other girls i know he s friends with What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i feel like he s a lot more playful open with me than other girls i know he s friends with What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.86it/s]
--- Text 1613 --- Text: 'i needed some space i needed to grow i was in the midst of some serious change and ok yes they had also hurt my feelings pretty badly and i was a bit spiteful' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i needed some space i needed to grow i was in the midst of some serious change and ok yes they had also hurt my feelings pretty badly and i was a bit spiteful What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i needed some space i needed to grow i was in the midst of some serious change and ok yes they had also hurt my feelings pretty badly and i was a bit spiteful What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.91it/s] 50%|█████ | 5/10 [00:00<00:00, 12.47it/s]
--- Text 1614 --- Text: 'i feel very cheated since i am supporting the family and doing all the other stuff while he spends hours a day gaming' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel very cheated since i am supporting the family and doing all the other stuff while he spends hours a day gaming What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i feel very cheated since i am supporting the family and doing all the other stuff while he spends hours a day gaming What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.19it/s] 40%|████ | 4/10 [00:00<00:00, 12.74it/s]
--- Text 1615 --- Text: 'i continue to feel so content about our decision to move here' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i continue to feel so content about our decision to move here What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i continue to feel so content about our decision to move here What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Contentment Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.47it/s]
--- Text 1616 --- Text: 'i cant helped but to feel burdened and anxious about this' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i cant helped but to feel burdened and anxious about this What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i cant helped but to feel burdened and anxious about this What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Anxiety Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.75it/s] 50%|█████ | 5/10 [00:00<00:00, 12.80it/s]
--- Text 1617 --- Text: 'i wont lie this week has been abit of a difficult week for me ive been feeling very stressed and anxious this week plus i think im coming down with the flu but it has definately helped me to appreciate the little things' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i wont lie this week has been abit of a difficult week for me ive been feeling very stressed and anxious this week plus i think im coming down with the flu but it has definately helped me to appreciate the little things What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is stress and Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i wont lie this week has been abit of a difficult week for me ive been feeling very stressed and anxious this week plus i think im coming down with the flu but it has definately helped me to appreciate the little things What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 8.32it/s]
--- Text 1618 --- Text: 'i kinda get real attached and excited when i feel that way and i never handle things as well as others would' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i kinda get real attached and excited when i feel that way and i never handle things as well as others would What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i kinda get real attached and excited when i feel that way and i never handle things as well as others would What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.70it/s]
--- Text 1619 --- Text: 'i both started to feel uncomfortable and got up to leave which was met with comments of oh yeah right two girls like you wouldnt come to a bar if youre not looking for attention from guys' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i both started to feel uncomfortable and got up to leave which was met with comments of oh yeah right two girls like you wouldnt come to a bar if youre not looking for attention from guys What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i both started to feel uncomfortable and got up to leave which was met with comments of oh yeah right two girls like you wouldnt come to a bar if youre not looking for attention from guys What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B. Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.85it/s]
--- Text 1620 --- Text: 'i almost didnt even feel convinced by the way the book was written' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i almost didnt even feel convinced by the way the book was written What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i almost didnt even feel convinced by the way the book was written What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: The emotion of this text is: sad Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.33it/s]
--- Text 1621 --- Text: 'im feeling brave ill snatch him to on my lap and after a few seconds of struggling he completely relaxes and submits to mommy scratches' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im feeling brave ill snatch him to on my lap and after a few seconds of struggling he completely relaxes and submits to mommy scratches What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling brave ill snatch him to on my lap and after a few seconds of struggling he completely relaxes and submits to mommy scratches What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 16.83it/s] 30%|███ | 3/10 [00:00<00:00, 10.66it/s]
--- Text 1622 --- Text: 'i feel that poachers and others who kill animals for their pelts ivory or other parts should be punished severely i find hunting and fishing cruel' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel that poachers and others who kill animals for their pelts ivory or other parts should be punished severely i find hunting and fishing cruel What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i feel that poachers and others who kill animals for their pelts ivory or other parts should be punished severely i find hunting and fishing cruel What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
100%|██████████| 10/10 [00:00<00:00, 17.49it/s] 20%|██ | 2/10 [00:00<00:00, 9.53it/s]
--- Text 1623 --- Text: 'i feel empty after cheated in the name of friendship i was broken' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel empty after cheated in the name of friendship i was broken What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel empty after cheated in the name of friendship i was broken What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.31it/s]
--- Text 1624 --- Text: 'i feel sure that i will go beyond that' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel sure that i will go beyond that What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel sure that i will go beyond that What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel sure that i will go beyond Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.28it/s] 100%|██████████| 10/10 [00:00<00:00, 16.74it/s]
--- Text 1625 --- Text: 'i am in the need of some extra guidance and i am feeling doubtful god seems to put the right message in my ear that i need at just the right time' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i am in the need of some extra guidance and i am feeling doubtful god seems to put the right message in my ear that i need at just the right time What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am in the need of some extra guidance and i am feeling doubtful god seems to put the right message in my ear that i need at just the right time What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.31it/s]
--- Text 1626 --- Text: 'i just feel insulted oh oh oh to my exexbf i am so totally entirely over you' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i just feel insulted oh oh oh to my exexbf i am so totally entirely over you What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i just feel insulted oh oh oh to my exexbf i am so totally entirely over you What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: insulted Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.98it/s]
--- Text 1627 --- Text: 'im feeling really really sarcastic caustic or theres been an influx of idiots into my flists daily lives' True Emotion: anger --- Zero-Shot Prompting --- Prompt: im feeling really really sarcastic caustic or theres been an influx of idiots into my flists daily lives What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling really really sarcastic caustic or theres been an influx of idiots into my flists daily lives What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sarcasm Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.53it/s] 50%|█████ | 5/10 [00:00<00:00, 12.47it/s]
--- Text 1628 --- Text: 'i feel i can only hope im not alone in these thoughts and im sure to all you fellow exchange students you probably have the same thoughts in mind with at least some of this listed some might say being an exchange student is unlike any other experience' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel i can only hope im not alone in these thoughts and im sure to all you fellow exchange students you probably have the same thoughts in mind with at least some of this listed some might say being an exchange student is unlike any other experience What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel i can only hope im not alone in these thoughts and im sure to all you fellow exchange students you probably have the same thoughts in mind with at least some of this listed some might say being an exchange student is unlike any other experience What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.41it/s] 30%|███ | 3/10 [00:00<00:00, 10.50it/s]
--- Text 1629 --- Text: 'i feel that anna ji is little bit stubborn on jan lokpal bill and the protests related to it' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel that anna ji is little bit stubborn on jan lokpal bill and the protests related to it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i feel that anna ji is little bit stubborn on jan lokpal bill and the protests related to it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.08it/s]
--- Text 1630 --- Text: 'i listen to it i feel all rebellious' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i listen to it i feel all rebellious What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i listen to it i feel all rebellious What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I listen to it I feel all reb Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.09it/s] 20%|██ | 2/10 [00:00<00:00, 8.36it/s]
--- Text 1631 --- Text: 'i feel like i am less of a woman less of a person less valuable because im not married and not dating' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like i am less of a woman less of a person less valuable because im not married and not dating What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel like i am less of a woman less of a person less valuable because im not married and not dating What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.60it/s]
--- Text 1632 --- Text: 'i was feeling really troubled and down over what my dad said' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i was feeling really troubled and down over what my dad said What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was feeling really troubled and down over what my dad said What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 18.22it/s] 30%|███ | 3/10 [00:00<00:00, 11.51it/s]
--- Text 1633 --- Text: 'id feel frantic' True Emotion: fear --- Zero-Shot Prompting --- Prompt: id feel frantic What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: id feel frantic What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: frantic Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.52it/s]
--- Text 1634 --- Text: 'i have learned how to present in front of a class without feeling nervous' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i have learned how to present in front of a class without feeling nervous What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have learned how to present in front of a class without feeling nervous What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Nervousness Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.65it/s] 40%|████ | 4/10 [00:00<00:00, 11.61it/s]
--- Text 1635 --- Text: 'i also miss the old curious child within me i just feel that the curious child inside me is dying slowly upon the shock of knowing that the world is not as beautiful as we thought it was' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i also miss the old curious child within me i just feel that the curious child inside me is dying slowly upon the shock of knowing that the world is not as beautiful as we thought it was What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i also miss the old curious child within me i just feel that the curious child inside me is dying slowly upon the shock of knowing that the world is not as beautiful as we thought it was What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.44it/s] 40%|████ | 4/10 [00:00<00:00, 12.89it/s]
--- Text 1636 --- Text: 'i am feeling content and happy with myself' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am feeling content and happy with myself What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is happiness. Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling content and happy with myself What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Contentment Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.08it/s]
--- Text 1637 --- Text: 'i feel like we re getting a terrific recruiter basketball coach and person' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like we re getting a terrific recruiter basketball coach and person What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like we re getting a terrific recruiter basketball coach and person What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.65it/s]
--- Text 1638 --- Text: 'i just got back from another miler faster than yesterday and im feeling amazing' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i just got back from another miler faster than yesterday and im feeling amazing What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i just got back from another miler faster than yesterday and im feeling amazing What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.28it/s]
--- Text 1639 --- Text: 'im feeling adventurous i might even make it multiple tiers too' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im feeling adventurous i might even make it multiple tiers too What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling adventurous i might even make it multiple tiers too What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I'm feeling adventurous, Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.66it/s]
--- Text 1640 --- Text: 'i wouldnt say that i suffer from social discomfort at the moment because ive found places where i feel comfortable and even people who have accepted me the way i am' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i wouldnt say that i suffer from social discomfort at the moment because ive found places where i feel comfortable and even people who have accepted me the way i am What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i wouldnt say that i suffer from social discomfort at the moment because ive found places where i feel comfortable and even people who have accepted me the way i am What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I wouldnt say that i suffer from Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.71it/s]
--- Text 1641 --- Text: 'i was feeling cool that night and she got it right' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i was feeling cool that night and she got it right What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was feeling cool that night and she got it right What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.58it/s] 30%|███ | 3/10 [00:00<00:00, 10.34it/s]
--- Text 1642 --- Text: 'i am not feeling the love towards myself and that becomes somewhat of a vicious circle resulting in me just feeling lazy complacent and in general just de motivated' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i am not feeling the love towards myself and that becomes somewhat of a vicious circle resulting in me just feeling lazy complacent and in general just de motivated What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i am not feeling the love towards myself and that becomes somewhat of a vicious circle resulting in me just feeling lazy complacent and in general just de motivated What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.17it/s] 20%|██ | 2/10 [00:00<00:00, 8.64it/s]
--- Text 1643 --- Text: 'i cant write a review for a book i adore unless i am feeling in the adoring mood at that moment' True Emotion: love --- Zero-Shot Prompting --- Prompt: i cant write a review for a book i adore unless i am feeling in the adoring mood at that moment What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i cant write a review for a book i adore unless i am feeling in the adoring mood at that moment What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.45it/s]
--- Text 1644 --- Text: 'i am feeling very insecure and sensitive' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i am feeling very insecure and sensitive What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling very insecure and sensitive What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.78it/s]
--- Text 1645 --- Text: 'i feel so useless some days' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel so useless some days What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so useless some days What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.50it/s] 20%|██ | 2/10 [00:00<00:00, 9.54it/s]
--- Text 1646 --- Text: 'i feel the most unloved and unlovable' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel the most unloved and unlovable What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel the most unloved and unlovable What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.75it/s] 100%|██████████| 10/10 [00:00<00:00, 17.31it/s]
--- Text 1647 --- Text: 'i feel special a href http facsimilogos' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel special a href http facsimilogos What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The text "I feel special" is a Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel special a href http facsimilogos What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel special because I have a special Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.16it/s]
--- Text 1648 --- Text: 'i feel pretty strongly about not doing a giveaway to gain numbers' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel pretty strongly about not doing a giveaway to gain numbers What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel pretty strongly about not doing a giveaway to gain numbers What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.44it/s]
--- Text 1649 --- Text: 'i feel really honoured to be a part of this inaugural race and you can sense how proud the local runners are to be able to show off their trails and to host this event' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel really honoured to be a part of this inaugural race and you can sense how proud the local runners are to be able to show off their trails and to host this event What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel really honoured to be a part of this inaugural race and you can sense how proud the local runners are to be able to show off their trails and to host this event What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.43it/s]
--- Text 1650 --- Text: 'i feel can you stop being so obnoxious and think for me at the very least' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel can you stop being so obnoxious and think for me at the very least What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel can you stop being so obnoxious and think for me at the very least What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.59it/s]
--- Text 1651 --- Text: 'i didint feel any love and caring now' True Emotion: love --- Zero-Shot Prompting --- Prompt: i didint feel any love and caring now What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i didint feel any love and caring now What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.27it/s]
--- Text 1652 --- Text: 'i feel like a bit of an ungrateful fool for not having written anything about him last week' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like a bit of an ungrateful fool for not having written anything about him last week What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like a bit of an ungrateful fool for not having written anything about him last week What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.90it/s]
--- Text 1653 --- Text: 'i even dare to try to explain in words how i feel about this gorgeous boy who is here at my house every other day holding my hand through lifes dismays' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i even dare to try to explain in words how i feel about this gorgeous boy who is here at my house every other day holding my hand through lifes dismays What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i even dare to try to explain in words how i feel about this gorgeous boy who is here at my house every other day holding my hand through lifes dismays What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.61it/s]
--- Text 1654 --- Text: 'i was feeling out of sorts restless' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i was feeling out of sorts restless What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was feeling out of sorts restless What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: restless Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.50it/s]
--- Text 1655 --- Text: 'im feeling a little dissatisfied' True Emotion: anger --- Zero-Shot Prompting --- Prompt: im feeling a little dissatisfied What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling a little dissatisfied What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 60%|██████ | 6/10 [00:00<00:00, 14.44it/s]
--- Text 1656 --- Text: 'i feel so helpless right now' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel so helpless right now What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so helpless right now What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: helplessness Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.73it/s]
--- Text 1657 --- Text: 'i feel like ive come a long way and im proud of what ive achieved not only this week but this year as well' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like ive come a long way and im proud of what ive achieved not only this week but this year as well What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like ive come a long way and im proud of what ive achieved not only this week but this year as well What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.54it/s]
--- Text 1658 --- Text: 'i was feeling very anxious this song came on the radio as soon as i got in the car' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i was feeling very anxious this song came on the radio as soon as i got in the car What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was feeling very anxious this song came on the radio as soon as i got in the car What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Anxiety Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.09it/s] 100%|██████████| 10/10 [00:00<00:00, 16.44it/s]
--- Text 1659 --- Text: 'i feel numb the end of the world as we know it and i feel numb a href http leslielandberg' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel numb the end of the world as we know it and i feel numb a href http leslielandberg What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is numb Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel numb the end of the world as we know it and i feel numb a href http leslielandberg What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel numb. The end of Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.95it/s] 50%|█████ | 5/10 [00:00<00:00, 12.73it/s]
--- Text 1660 --- Text: 'i was having an awful year racing and was feeling exhausted all the time' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i was having an awful year racing and was feeling exhausted all the time What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was having an awful year racing and was feeling exhausted all the time What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.96it/s] 50%|█████ | 5/10 [00:00<00:00, 12.34it/s]
--- Text 1661 --- Text: 'i am going through trials or just feeling troubled about something i love to put on worship music while i am driving and really think about the words sing and pray as i go' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i am going through trials or just feeling troubled about something i love to put on worship music while i am driving and really think about the words sing and pray as i go What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i am going through trials or just feeling troubled about something i love to put on worship music while i am driving and really think about the words sing and pray as i go What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.34it/s] 50%|█████ | 5/10 [00:00<00:00, 12.55it/s]
--- Text 1662 --- Text: 'i haven t been able to do a lot of stuff most people managed to do in various points of their lives i feel that i have missed out a lot in life and i know that my current path is my only ticket to live a live that i want to' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i haven t been able to do a lot of stuff most people managed to do in various points of their lives i feel that i have missed out a lot in life and i know that my current path is my only ticket to live a live that i want to What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i haven t been able to do a lot of stuff most people managed to do in various points of their lives i feel that i have missed out a lot in life and i know that my current path is my only ticket to live a live that i want to What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.60it/s] 40%|████ | 4/10 [00:00<00:00, 12.94it/s]
--- Text 1663 --- Text: 'im feeling hopeful relieved' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im feeling hopeful relieved What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is hopeful Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling hopeful relieved What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: relieved Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.76it/s] 40%|████ | 4/10 [00:00<00:00, 12.72it/s]
--- Text 1664 --- Text: 'i feel i might have lost the potty training train' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel i might have lost the potty training train What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i feel i might have lost the potty training train What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 8.65it/s]
--- Text 1665 --- Text: 'im afraid to call the guy from yesterday because i think hell be angry because i think my boss is angry because i dont communicate with him and i feel like im doing a shitty job and i project my fears onto him' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im afraid to call the guy from yesterday because i think hell be angry because i think my boss is angry because i dont communicate with him and i feel like im doing a shitty job and i project my fears onto him What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im afraid to call the guy from yesterday because i think hell be angry because i think my boss is angry because i dont communicate with him and i feel like im doing a shitty job and i project my fears onto him What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear. Predicted Emotion: fear --------------------
100%|██████████| 10/10 [00:00<00:00, 17.75it/s] 50%|█████ | 5/10 [00:00<00:00, 13.60it/s]
--- Text 1666 --- Text: 'i always feel so dull in the morning' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i always feel so dull in the morning What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i always feel so dull in the morning What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: dullness Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.11it/s] 50%|█████ | 5/10 [00:00<00:00, 12.95it/s]
--- Text 1667 --- Text: 'i am lost for words to tell you of my agonising pain i feel from my own sorrowful heart my heart of darkness' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i am lost for words to tell you of my agonising pain i feel from my own sorrowful heart my heart of darkness What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i am lost for words to tell you of my agonising pain i feel from my own sorrowful heart my heart of darkness What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.75it/s] 20%|██ | 2/10 [00:00<00:00, 9.27it/s]
--- Text 1668 --- Text: 'i feel lashes out at me and is rude' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel lashes out at me and is rude What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i feel lashes out at me and is rude What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.51it/s]
--- Text 1669 --- Text: 'i feel groggy and out of sorts from my episode not counting the fact that i got scared last night' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel groggy and out of sorts from my episode not counting the fact that i got scared last night What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel groggy and out of sorts from my episode not counting the fact that i got scared last night What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.67it/s]
--- Text 1670 --- Text: 'i know it will be no picnic and i will not feel defeated at all if i get my first contraction and immediately decide to go for the epidural or if i am induced or have to have a c section or whatever may be' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i know it will be no picnic and i will not feel defeated at all if i get my first contraction and immediately decide to go for the epidural or if i am induced or have to have a c section or whatever may be What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i know it will be no picnic and i will not feel defeated at all if i get my first contraction and immediately decide to go for the epidural or if i am induced or have to have a c section or whatever may be What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.39it/s]
--- Text 1671 --- Text: 'i feel it is of vital importance and stress we show love towards one another and genuine love please people otherwise feel free to go cold on me i do not like being misled' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel it is of vital importance and stress we show love towards one another and genuine love please people otherwise feel free to go cold on me i do not like being misled What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel it is of vital importance and stress we show love towards one another and genuine love please people otherwise feel free to go cold on me i do not like being misled What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.60it/s]
--- Text 1672 --- Text: 'i feel a bit calm now' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel a bit calm now What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel a bit calm now What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: calm Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.06it/s]
--- Text 1673 --- Text: 'i was feeling brave i would try to pick up running again' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i was feeling brave i would try to pick up running again What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was feeling brave i would try to pick up running again What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.04it/s] 40%|████ | 4/10 [00:00<00:00, 10.50it/s]
--- Text 1674 --- Text: 'i have asthma and when i can barely breathe when it s hard i feel very shaky and weak i feel like not doing anything but lie there helplessly and i feel like collapesing i did so much reseach and i got nothing' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i have asthma and when i can barely breathe when it s hard i feel very shaky and weak i feel like not doing anything but lie there helplessly and i feel like collapesing i did so much reseach and i got nothing What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i have asthma and when i can barely breathe when it s hard i feel very shaky and weak i feel like not doing anything but lie there helplessly and i feel like collapesing i did so much reseach and i got nothing What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fear Predicted Emotion: fear --------------------
100%|██████████| 10/10 [00:00<00:00, 17.03it/s] 50%|█████ | 5/10 [00:00<00:00, 12.67it/s]
--- Text 1675 --- Text: 'i walked under the refuge feeling it was the perfect shelter from a storm' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i walked under the refuge feeling it was the perfect shelter from a storm What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i walked under the refuge feeling it was the perfect shelter from a storm What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.11it/s] 100%|██████████| 10/10 [00:00<00:00, 16.24it/s]
--- Text 1676 --- Text: 'i find it helps to let go of self will by saying let your will be done not mine or when i m feeling particularly impatient in god s time not my time' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i find it helps to let go of self will by saying let your will be done not mine or when i m feeling particularly impatient in god s time not my time What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i find it helps to let go of self will by saying let your will be done not mine or when i m feeling particularly impatient in god s time not my time What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: The text is written in a way that Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.21it/s] 100%|██████████| 10/10 [00:00<00:00, 16.38it/s]
--- Text 1677 --- Text: 'i am again not inspired and after looking at ideas and images i feel that i dont appreciate them anymore they become useless and purely skill driven having nothing to do with thought' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i am again not inspired and after looking at ideas and images i feel that i dont appreciate them anymore they become useless and purely skill driven having nothing to do with thought What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am again not inspired and after looking at ideas and images i feel that i dont appreciate them anymore they become useless and purely skill driven having nothing to do with thought What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: NONE OF THE ABOVE Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.02it/s]
--- Text 1678 --- Text: 'i become someone else and i make random awkward jokes honestly this feeling is so strange is this what it feels like to be on top of a cloud' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i become someone else and i make random awkward jokes honestly this feeling is so strange is this what it feels like to be on top of a cloud What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i become someone else and i make random awkward jokes honestly this feeling is so strange is this what it feels like to be on top of a cloud What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Surprise Predicted Emotion: surprise --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.69it/s]
--- Text 1679 --- Text: 'i hope i get the job cause im in desperate need of money and i feel greedy' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i hope i get the job cause im in desperate need of money and i feel greedy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i hope i get the job cause im in desperate need of money and i feel greedy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: greed Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.12it/s] 50%|█████ | 5/10 [00:00<00:00, 13.29it/s]
--- Text 1680 --- Text: 'i feel like that im hated by most of the girls is it becoz im a good dancer' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like that im hated by most of the girls is it becoz im a good dancer What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel like that im hated by most of the girls is it becoz im a good dancer What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.21it/s]
--- Text 1681 --- Text: 'i feel like living in austin was really sweet in other ways' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel like living in austin was really sweet in other ways What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like living in austin was really sweet in other ways What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.84it/s]
--- Text 1682 --- Text: 'i think itd be easier if i had parents that argued with me about it then i could feel rebellious or something p but right now i just feel like a burden' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i think itd be easier if i had parents that argued with me about it then i could feel rebellious or something p but right now i just feel like a burden What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i think itd be easier if i had parents that argued with me about it then i could feel rebellious or something p but right now i just feel like a burden What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.35it/s]
--- Text 1683 --- Text: 'i think im making up for feeling like i missed autumn and its great colours' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i think im making up for feeling like i missed autumn and its great colours What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i think im making up for feeling like i missed autumn and its great colours What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.43it/s]
--- Text 1684 --- Text: 'i blamed the people around me for making me feel less valued for being a stay at home mom' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i blamed the people around me for making me feel less valued for being a stay at home mom What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i blamed the people around me for making me feel less valued for being a stay at home mom What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.14it/s]
--- Text 1685 --- Text: 'i feel this weekend is going to be a slutty one' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel this weekend is going to be a slutty one What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel this weekend is going to be a slutty one What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: slutty Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.96it/s]
--- Text 1686 --- Text: 'i get the impression that banjo was really feeling it but molly still prefers her beloved katy perry purrrr' True Emotion: love --- Zero-Shot Prompting --- Prompt: i get the impression that banjo was really feeling it but molly still prefers her beloved katy perry purrrr What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i get the impression that banjo was really feeling it but molly still prefers her beloved katy perry purrrr What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.04it/s]
--- Text 1687 --- Text: 'i didnt get to prank anyone throughout the whole day cos i was either too busy or not feeling creative' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i didnt get to prank anyone throughout the whole day cos i was either too busy or not feeling creative What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i didnt get to prank anyone throughout the whole day cos i was either too busy or not feeling creative What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.56it/s]
--- Text 1688 --- Text: 'i wish him and i could go out and i could do my hair and makeup and feel cute and flirt and talk and stuff but that never occurs' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i wish him and i could go out and i could do my hair and makeup and feel cute and flirt and talk and stuff but that never occurs What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i wish him and i could go out and i could do my hair and makeup and feel cute and flirt and talk and stuff but that never occurs What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.26it/s] 20%|██ | 2/10 [00:00<00:00, 9.52it/s]
--- Text 1689 --- Text: 'i am feeling particularly optimistic today and have every reason to look forward to amazing things in' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am feeling particularly optimistic today and have every reason to look forward to amazing things in What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i am feeling particularly optimistic today and have every reason to look forward to amazing things in What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy. Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.74it/s] 30%|███ | 3/10 [00:00<00:00, 11.42it/s]
--- Text 1690 --- Text: 'i feel that books are always a wonderful gift for a baby' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel that books are always a wonderful gift for a baby What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: love Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i feel that books are always a wonderful gift for a baby What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.57it/s]
--- Text 1691 --- Text: 'i told him that i was willing to do whatever it took for me to not have to feel this horrible every day' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i told him that i was willing to do whatever it took for me to not have to feel this horrible every day What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i told him that i was willing to do whatever it took for me to not have to feel this horrible every day What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.91it/s] 30%|███ | 3/10 [00:00<00:00, 10.68it/s]
--- Text 1692 --- Text: 'i was feeling cold towards to my partner although i didnt think i presented that way i felt like i had to fake my feelings for him and that i didnt love him anymore' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i was feeling cold towards to my partner although i didnt think i presented that way i felt like i had to fake my feelings for him and that i didnt love him anymore What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i was feeling cold towards to my partner although i didnt think i presented that way i felt like i had to fake my feelings for him and that i didnt love him anymore What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.55it/s]
--- Text 1693 --- Text: 'i feel ok that must be the reason why it was so outrageously priced' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel ok that must be the reason why it was so outrageously priced What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel ok that must be the reason why it was so outrageously priced What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 18.10it/s] 50%|█████ | 5/10 [00:00<00:00, 13.82it/s]
--- Text 1694 --- Text: 'i really do feel superior' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i really do feel superior What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i really do feel superior What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: superiority Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.52it/s]
--- Text 1695 --- Text: 'i feel like that line is so perfect' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like that line is so perfect What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like that line is so perfect What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 11.78it/s]
--- Text 1696 --- Text: 'i lie down he feels my belly listens to babys heartbeat gets mad at me for sitting up without rolling onto my side first and then tells me theres some protein in my urine nothing to be worried about though and asks if anything is bothering me' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i lie down he feels my belly listens to babys heartbeat gets mad at me for sitting up without rolling onto my side first and then tells me theres some protein in my urine nothing to be worried about though and asks if anything is bothering me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i lie down he feels my belly listens to babys heartbeat gets mad at me for sitting up without rolling onto my side first and then tells me theres some protein in my urine nothing to be worried about though and asks if anything is bothering me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.32it/s]
--- Text 1697 --- Text: 'i left feeling absoloutely devastated' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i left feeling absoloutely devastated What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i left feeling absoloutely devastated What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: devastated Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.10it/s] 100%|██████████| 10/10 [00:00<00:00, 16.75it/s]
--- Text 1698 --- Text: 'i don t have to stiffen don t have to fight for myself or feel bad about behaving the way i naturally behave' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i don t have to stiffen don t have to fight for myself or feel bad about behaving the way i naturally behave What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i don t have to stiffen don t have to fight for myself or feel bad about behaving the way i naturally behave What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: The emotion of this text is: Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 8.65it/s]
--- Text 1699 --- Text: 'i work well with almost every client ive ever been in contact with because i know what it means to feel depressed angry frustrated irritated hopeless and apathetic because i feel it daily' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i work well with almost every client ive ever been in contact with because i know what it means to feel depressed angry frustrated irritated hopeless and apathetic because i feel it daily What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i work well with almost every client ive ever been in contact with because i know what it means to feel depressed angry frustrated irritated hopeless and apathetic because i feel it daily What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 8.54it/s]
--- Text 1700 --- Text: 'i hear someone say we should just let gardeners be let folks do whatever they want i feel pretty aggravated' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i hear someone say we should just let gardeners be let folks do whatever they want i feel pretty aggravated What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i hear someone say we should just let gardeners be let folks do whatever they want i feel pretty aggravated What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
100%|██████████| 10/10 [00:00<00:00, 17.16it/s] 30%|███ | 3/10 [00:00<00:00, 11.29it/s]
--- Text 1701 --- Text: 'im feeling so appreciative of every experience in my life that has brought me to now to today' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im feeling so appreciative of every experience in my life that has brought me to now to today What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: im feeling so appreciative of every experience in my life that has brought me to now to today What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.70it/s] 20%|██ | 2/10 [00:00<00:00, 9.79it/s]
--- Text 1702 --- Text: 'i feel affectionate toward him' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel affectionate toward him What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i feel affectionate toward him What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.04it/s]
--- Text 1703 --- Text: 'i feel really shitty and it s seriously like the whole thing is ruined' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel really shitty and it s seriously like the whole thing is ruined What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel really shitty and it s seriously like the whole thing is ruined What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness. Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 8.78it/s]
--- Text 1704 --- Text: 'i always feel that love is something much vaster and if we could explore it together perhaps i should then make my life into something worthwhile before it is too late' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i always feel that love is something much vaster and if we could explore it together perhaps i should then make my life into something worthwhile before it is too late What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i always feel that love is something much vaster and if we could explore it together perhaps i should then make my life into something worthwhile before it is too late What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.61it/s] 50%|█████ | 5/10 [00:00<00:00, 13.40it/s]
--- Text 1705 --- Text: 'i feel useless with just a bachelors and masters' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel useless with just a bachelors and masters What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel useless with just a bachelors and masters What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.23it/s] 100%|██████████| 10/10 [00:00<00:00, 16.67it/s]
--- Text 1706 --- Text: 'i stopped myself and began telling myself what i wanted to feel i am peaceful' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i stopped myself and began telling myself what i wanted to feel i am peaceful What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is peaceful Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i stopped myself and began telling myself what i wanted to feel i am peaceful What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: The emotion of the text is: peace Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.38it/s]
--- Text 1707 --- Text: 'i acted withdrawn and cold towards others in situations that required empathy its not that i dont care i just dont always feel the feelings so i fake it' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i acted withdrawn and cold towards others in situations that required empathy its not that i dont care i just dont always feel the feelings so i fake it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i acted withdrawn and cold towards others in situations that required empathy its not that i dont care i just dont always feel the feelings so i fake it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Withdrawal Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.05it/s] 30%|███ | 3/10 [00:00<00:00, 10.64it/s]
--- Text 1708 --- Text: 'i feel like i have nailed the marriage and the house parts of my life and i am happy and content as i can possibly be in those aspects' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like i have nailed the marriage and the house parts of my life and i am happy and content as i can possibly be in those aspects What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i feel like i have nailed the marriage and the house parts of my life and i am happy and content as i can possibly be in those aspects What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.09it/s]
--- Text 1709 --- Text: 'i just tell people i feel like one sweet southern mess right now' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i just tell people i feel like one sweet southern mess right now What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i just tell people i feel like one sweet southern mess right now What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.66it/s]
--- Text 1710 --- Text: 'i feel for folks with tender plantings that may have been set out too soon it might actually dip below freezing over the next few nights' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel for folks with tender plantings that may have been set out too soon it might actually dip below freezing over the next few nights What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel for folks with tender plantings that may have been set out too soon it might actually dip below freezing over the next few nights What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.03it/s]
--- Text 1711 --- Text: 'i really feel pissed off as i want to spend more time with you' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i really feel pissed off as i want to spend more time with you What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i really feel pissed off as i want to spend more time with you What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.39it/s]
--- Text 1712 --- Text: 'i feel calm and okay but sometimes i just get so sad' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel calm and okay but sometimes i just get so sad What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel calm and okay but sometimes i just get so sad What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness. Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.97it/s] 50%|█████ | 5/10 [00:00<00:00, 12.32it/s]
--- Text 1713 --- Text: 'i went outside to shut in the hens then was tempted by the brilliance of the stars to walk across the frozen fields feeling very cold looking up into the sky' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i went outside to shut in the hens then was tempted by the brilliance of the stars to walk across the frozen fields feeling very cold looking up into the sky What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i went outside to shut in the hens then was tempted by the brilliance of the stars to walk across the frozen fields feeling very cold looking up into the sky What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: A) Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 60%|██████ | 6/10 [00:00<00:00, 14.45it/s]
--- Text 1714 --- Text: 'im feeling a little lethargic' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im feeling a little lethargic What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling a little lethargic What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: lethargy Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.59it/s]
--- Text 1715 --- Text: 'i also do feel passionate about teaching' True Emotion: love --- Zero-Shot Prompting --- Prompt: i also do feel passionate about teaching What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i also do feel passionate about teaching What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.27it/s]
--- Text 1716 --- Text: 'i woke up about am feeling a little disturbed' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i woke up about am feeling a little disturbed What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i woke up about am feeling a little disturbed What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.54it/s]
--- Text 1717 --- Text: 'i have to take jenny in to be spayed so of course im feeling nervous and guilty' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i have to take jenny in to be spayed so of course im feeling nervous and guilty What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have to take jenny in to be spayed so of course im feeling nervous and guilty What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Nervous Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.63it/s]
--- Text 1718 --- Text: 'i received a slightly belated message back from daniel and feel a lot more reassured that im not the only one who thinks l is emotionally insensitive' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i received a slightly belated message back from daniel and feel a lot more reassured that im not the only one who thinks l is emotionally insensitive What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i received a slightly belated message back from daniel and feel a lot more reassured that im not the only one who thinks l is emotionally insensitive What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Daniel: Hey, I just wanted to Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 8.31it/s]
--- Text 1719 --- Text: 'i had encountered before and as much as these dreams thrilled me they left me feeling even more terrified' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i had encountered before and as much as these dreams thrilled me they left me feeling even more terrified What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i had encountered before and as much as these dreams thrilled me they left me feeling even more terrified What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear. Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.23it/s]
--- Text 1720 --- Text: 'i work myself like crazy doing extra stuff around the house or volunteering and serving other people in an attempt to feel productive and useful to someone anyone pleeeeeease' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i work myself like crazy doing extra stuff around the house or volunteering and serving other people in an attempt to feel productive and useful to someone anyone pleeeeeease What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i work myself like crazy doing extra stuff around the house or volunteering and serving other people in an attempt to feel productive and useful to someone anyone pleeeeeease What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.34it/s] 40%|████ | 4/10 [00:00<00:00, 12.35it/s]
--- Text 1721 --- Text: 'i started questioning god feeling worthless and even jealous of others that come by parenthood so easily' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i started questioning god feeling worthless and even jealous of others that come by parenthood so easily What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i started questioning god feeling worthless and even jealous of others that come by parenthood so easily What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.11it/s]
--- Text 1722 --- Text: 'i can t help feeling curious about it' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i can t help feeling curious about it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i can t help feeling curious about it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I can't help feeling curious about Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.10it/s]
--- Text 1723 --- Text: 'i am feeling so appreciative today' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am feeling so appreciative today What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling so appreciative today What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Appreciation Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.88it/s]
--- Text 1724 --- Text: 'i feel kinda bitchy and cranky i need to try and take a nap' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel kinda bitchy and cranky i need to try and take a nap What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel kinda bitchy and cranky i need to try and take a nap What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: bitchy Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.68it/s]
--- Text 1725 --- Text: 'i declined to purchase any this time i enjoyed feeling squishing and project thinking all the divine yarn' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i declined to purchase any this time i enjoyed feeling squishing and project thinking all the divine yarn What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i declined to purchase any this time i enjoyed feeling squishing and project thinking all the divine yarn What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.96it/s] 30%|███ | 3/10 [00:00<00:00, 10.60it/s]
--- Text 1726 --- Text: 'i feel like it add a little bit more shield from the cold and the fabric is great for wicking away sweat' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel like it add a little bit more shield from the cold and the fabric is great for wicking away sweat What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like it add a little bit more shield from the cold and the fabric is great for wicking away sweat What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.68it/s]
--- Text 1727 --- Text: 'i feel much more relaxed going into this race' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel much more relaxed going into this race What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel much more relaxed going into this race What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: relaxation Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.23it/s]
--- Text 1728 --- Text: 'i feel this needs a clever title but i cant think of one' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel this needs a clever title but i cant think of one What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel this needs a clever title but i cant think of one What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel this needs a clever title but Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.76it/s]
--- Text 1729 --- Text: 'i feel kind of shamed about myself' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel kind of shamed about myself What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel kind of shamed about myself What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.28it/s] 30%|███ | 3/10 [00:00<00:00, 10.47it/s]
--- Text 1730 --- Text: 'i felt like id developed feelings for this guy thus explaining why id even follow this guy like a faithful puppy dog and he never knew' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i felt like id developed feelings for this guy thus explaining why id even follow this guy like a faithful puppy dog and he never knew What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i felt like id developed feelings for this guy thus explaining why id even follow this guy like a faithful puppy dog and he never knew What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.08it/s] 40%|████ | 4/10 [00:00<00:00, 12.40it/s]
--- Text 1731 --- Text: 'i feel like im so distracted most days' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel like im so distracted most days What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is distraction Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like im so distracted most days What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: distracted Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.97it/s]
--- Text 1732 --- Text: 'i always feel sympathetic for those that do as well because life can be really hard on you sometimes when you do have alot of pride' True Emotion: love --- Zero-Shot Prompting --- Prompt: i always feel sympathetic for those that do as well because life can be really hard on you sometimes when you do have alot of pride What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i always feel sympathetic for those that do as well because life can be really hard on you sometimes when you do have alot of pride What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.69it/s] 50%|█████ | 5/10 [00:00<00:00, 12.79it/s]
--- Text 1733 --- Text: 'i have not had any serious injuries or setbacks other than that infection in my foot a couple of months ago but i have noticed that my knees and inner foot have started to ache and feel tender during the longer runs' True Emotion: love --- Zero-Shot Prompting --- Prompt: i have not had any serious injuries or setbacks other than that infection in my foot a couple of months ago but i have noticed that my knees and inner foot have started to ache and feel tender during the longer runs What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i have not had any serious injuries or setbacks other than that infection in my foot a couple of months ago but i have noticed that my knees and inner foot have started to ache and feel tender during the longer runs What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.05it/s]
--- Text 1734 --- Text: 'i feel like nine times out of as long as you re determined and keen it tends to work out anyway' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like nine times out of as long as you re determined and keen it tends to work out anyway What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like nine times out of as long as you re determined and keen it tends to work out anyway What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: The emotion of this text is: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 10%|█ | 1/10 [00:00<00:01, 6.42it/s]
--- Text 1735 --- Text: 'im feeling absolutely amazing' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: im feeling absolutely amazing What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling absolutely amazing What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.75it/s] 50%|█████ | 5/10 [00:00<00:00, 12.62it/s]
--- Text 1736 --- Text: 'i got a shot of terbutaline which makes you feel shaky and makes your heart race like you just drank cups of coffee' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i got a shot of terbutaline which makes you feel shaky and makes your heart race like you just drank cups of coffee What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i got a shot of terbutaline which makes you feel shaky and makes your heart race like you just drank cups of coffee What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: b) Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.35it/s]
--- Text 1737 --- Text: 'i was stressed about my job search and apartment hunting and i was just feeling overwhelmed with everything that was going on' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i was stressed about my job search and apartment hunting and i was just feeling overwhelmed with everything that was going on What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was stressed about my job search and apartment hunting and i was just feeling overwhelmed with everything that was going on What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: stress Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.74it/s]
--- Text 1738 --- Text: 'ive been feeling very mad at it' True Emotion: anger --- Zero-Shot Prompting --- Prompt: ive been feeling very mad at it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: ive been feeling very mad at it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger. Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.41it/s]
--- Text 1739 --- Text: 'i havent been sick in the winter very often since i quit smoking years ago so seldom in fact that now when i do get sick i feel outraged hows that for rational thinking' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i havent been sick in the winter very often since i quit smoking years ago so seldom in fact that now when i do get sick i feel outraged hows that for rational thinking What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i havent been sick in the winter very often since i quit smoking years ago so seldom in fact that now when i do get sick i feel outraged hows that for rational thinking What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
100%|██████████| 10/10 [00:00<00:00, 16.76it/s] 20%|██ | 2/10 [00:00<00:00, 8.58it/s]
--- Text 1740 --- Text: 'im feeling all romantic so i thought id show you some easy last minute presents and fashion ideas for valentines day' True Emotion: love --- Zero-Shot Prompting --- Prompt: im feeling all romantic so i thought id show you some easy last minute presents and fashion ideas for valentines day What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: im feeling all romantic so i thought id show you some easy last minute presents and fashion ideas for valentines day What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 16.82it/s] 50%|█████ | 5/10 [00:00<00:00, 13.38it/s]
--- Text 1741 --- Text: 'i feel so restless so bored and im in danger of giving up on being good at work' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel so restless so bored and im in danger of giving up on being good at work What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so restless so bored and im in danger of giving up on being good at work What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Boredom Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.27it/s]
--- Text 1742 --- Text: 'i need to step up my game but im just feeling like i cant be bothered' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i need to step up my game but im just feeling like i cant be bothered What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i need to step up my game but im just feeling like i cant be bothered What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: * feeling like you can't be Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.27it/s] 50%|█████ | 5/10 [00:00<00:00, 13.83it/s]
--- Text 1743 --- Text: 'i feel like im unwelcome' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like im unwelcome What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel like im unwelcome What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.56it/s]
--- Text 1744 --- Text: 'i feel as uncomfortable now as if i were carrying a volvo but my belly is nice and tidy and looks not unsimilar to the beer gut my dad has nice and hard and round and i waddle just like he does' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel as uncomfortable now as if i were carrying a volvo but my belly is nice and tidy and looks not unsimilar to the beer gut my dad has nice and hard and round and i waddle just like he does What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel as uncomfortable now as if i were carrying a volvo but my belly is nice and tidy and looks not unsimilar to the beer gut my dad has nice and hard and round and i waddle just like he does What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.18it/s]
--- Text 1745 --- Text: 'im happy to report im still not feeling terribly stressed' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im happy to report im still not feeling terribly stressed What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im happy to report im still not feeling terribly stressed What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Happiness Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.74it/s]
--- Text 1746 --- Text: 'i feel more loyal to micah' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel more loyal to micah What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel more loyal to micah What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.36it/s]
--- Text 1747 --- Text: 'i feel that it is of vital importance that those who care about me know this stuff' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel that it is of vital importance that those who care about me know this stuff What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel that it is of vital importance that those who care about me know this stuff What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.69it/s]
--- Text 1748 --- Text: 'i did feel slightly weird in that costume' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i did feel slightly weird in that costume What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i did feel slightly weird in that costume What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: surprise Predicted Emotion: surprise --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.83it/s]
--- Text 1749 --- Text: 'i didnt want to be spending my days working in a job that i didnt enjoy or to come home feeling stressed and tired and not be able to give my daughter the attention she deserved' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i didnt want to be spending my days working in a job that i didnt enjoy or to come home feeling stressed and tired and not be able to give my daughter the attention she deserved What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i didnt want to be spending my days working in a job that i didnt enjoy or to come home feeling stressed and tired and not be able to give my daughter the attention she deserved What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B. Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.49it/s] 100%|██████████| 10/10 [00:00<00:00, 17.26it/s]
--- Text 1750 --- Text: 'i have noticed my fingers and toes get very cold and almost feel numb' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i have noticed my fingers and toes get very cold and almost feel numb What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i have noticed my fingers and toes get very cold and almost feel numb What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I have noticed my fingers and toes get Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.74it/s] 40%|████ | 4/10 [00:00<00:00, 11.86it/s]
--- Text 1751 --- Text: 'i always buy a couple of pork loins when they go on sale and when i m feeling clever i cut them in half and tuck them into gallon size ziplocks with a marinade and stuff them in the freezer' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i always buy a couple of pork loins when they go on sale and when i m feeling clever i cut them in half and tuck them into gallon size ziplocks with a marinade and stuff them in the freezer What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i always buy a couple of pork loins when they go on sale and when i m feeling clever i cut them in half and tuck them into gallon size ziplocks with a marinade and stuff them in the freezer What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.25it/s]
--- Text 1752 --- Text: 'i feel so extremely disappointed by you you took me for granted' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel so extremely disappointed by you you took me for granted What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so extremely disappointed by you you took me for granted What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.04it/s] 50%|█████ | 5/10 [00:00<00:00, 12.31it/s]
--- Text 1753 --- Text: 'i feel like everything that i hope to become a piller in my life i cling to i despise myself for clinging to something like a hopeless fucking baby' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like everything that i hope to become a piller in my life i cling to i despise myself for clinging to something like a hopeless fucking baby What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i feel like everything that i hope to become a piller in my life i cling to i despise myself for clinging to something like a hopeless fucking baby What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.16it/s]
--- Text 1754 --- Text: 'i dont know but i feel virtuous so i accept the reward' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i dont know but i feel virtuous so i accept the reward What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i dont know but i feel virtuous so i accept the reward What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I don't know but I feel Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.42it/s] 20%|██ | 2/10 [00:00<00:00, 8.55it/s]
--- Text 1755 --- Text: 'i feel like i can t truly get excited for this race because i have no idea whether or not i ll even be able to run it' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like i can t truly get excited for this race because i have no idea whether or not i ll even be able to run it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion in this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i feel like i can t truly get excited for this race because i have no idea whether or not i ll even be able to run it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear. Predicted Emotion: fear --------------------
100%|██████████| 10/10 [00:00<00:00, 17.29it/s] 50%|█████ | 5/10 [00:00<00:00, 12.29it/s]
--- Text 1756 --- Text: 'i usually end up sitting at my desk feeling like i m at work but just doing unimportant tasks or browsing the internet' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i usually end up sitting at my desk feeling like i m at work but just doing unimportant tasks or browsing the internet What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is likely b Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i usually end up sitting at my desk feeling like i m at work but just doing unimportant tasks or browsing the internet What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Boredom Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.20it/s] 30%|███ | 3/10 [00:00<00:00, 11.29it/s]
--- Text 1757 --- Text: 'i feel like a mom of a compassionate smart stable human being' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel like a mom of a compassionate smart stable human being What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Love Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i feel like a mom of a compassionate smart stable human being What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.30it/s] 50%|█████ | 5/10 [00:00<00:00, 13.86it/s]
--- Text 1758 --- Text: 'i feel elegant in a dress' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel elegant in a dress What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel elegant in a dress What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: elegance Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.94it/s]
--- Text 1759 --- Text: 'i still feel like there is a lot left to keep me entertained' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i still feel like there is a lot left to keep me entertained What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i still feel like there is a lot left to keep me entertained What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I still feel like there is a lot Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.26it/s]
--- Text 1760 --- Text: 'i werent feeling crappy enough aunt flo decided to show up and im bloated like a balloon' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i werent feeling crappy enough aunt flo decided to show up and im bloated like a balloon What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i werent feeling crappy enough aunt flo decided to show up and im bloated like a balloon What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.16it/s] 50%|█████ | 5/10 [00:00<00:00, 13.55it/s]
--- Text 1761 --- Text: 'i was feeling overwhelmingly anxious so i went into my room to read my bible and pray' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i was feeling overwhelmingly anxious so i went into my room to read my bible and pray What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was feeling overwhelmingly anxious so i went into my room to read my bible and pray What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Anxiety Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.96it/s]
--- Text 1762 --- Text: 'i write this i giggle and shake my head in humbling shame but in a way i feel somewhat triumphant' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i write this i giggle and shake my head in humbling shame but in a way i feel somewhat triumphant What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i write this i giggle and shake my head in humbling shame but in a way i feel somewhat triumphant What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Giggling Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.67it/s]
--- Text 1763 --- Text: 'i said something familiar such as i would love to be present with you now and i feel too anxious about time' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i said something familiar such as i would love to be present with you now and i feel too anxious about time What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i said something familiar such as i would love to be present with you now and i feel too anxious about time What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 16.73it/s] 40%|████ | 4/10 [00:00<00:00, 12.00it/s]
--- Text 1764 --- Text: 'i write this th post i feel extremely delighted to buy myself a little corner in this blogger world' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i write this th post i feel extremely delighted to buy myself a little corner in this blogger world What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i write this th post i feel extremely delighted to buy myself a little corner in this blogger world What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.97it/s] 20%|██ | 2/10 [00:00<00:00, 8.62it/s]
--- Text 1765 --- Text: 'i don t know how else to describe it except to say that i had the same feeling about three weeks before my beloved grandmother passed away' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i don t know how else to describe it except to say that i had the same feeling about three weeks before my beloved grandmother passed away What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i don t know how else to describe it except to say that i had the same feeling about three weeks before my beloved grandmother passed away What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.76it/s] 40%|████ | 4/10 [00:00<00:00, 11.63it/s]
--- Text 1766 --- Text: 'i have been learning and re learning the lesson that no matter how i feel about myself or even how others may feel about me i am treasured by god' True Emotion: love --- Zero-Shot Prompting --- Prompt: i have been learning and re learning the lesson that no matter how i feel about myself or even how others may feel about me i am treasured by god What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i have been learning and re learning the lesson that no matter how i feel about myself or even how others may feel about me i am treasured by god What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.53it/s]
--- Text 1767 --- Text: 'i know the feel of her losing control against me and trusting me to catch her when she comes apart' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i know the feel of her losing control against me and trusting me to catch her when she comes apart What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i know the feel of her losing control against me and trusting me to catch her when she comes apart What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.66it/s]
--- Text 1768 --- Text: 'i said before do feel free to contact me this is something i am interested in finding out more about' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i said before do feel free to contact me this is something i am interested in finding out more about What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i said before do feel free to contact me this is something i am interested in finding out more about What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.70it/s] 40%|████ | 4/10 [00:00<00:00, 11.26it/s]
--- Text 1769 --- Text: 'i lie in bed knowing that the holy spirit has got to do the work but i feel burdened that i m not working hard enough' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i lie in bed knowing that the holy spirit has got to do the work but i feel burdened that i m not working hard enough What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i lie in bed knowing that the holy spirit has got to do the work but i feel burdened that i m not working hard enough What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Burden Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.69it/s]
--- Text 1770 --- Text: 'i feel myself about how successful my attempts are im starting to connect with the fact that people want to hear music not perfection whatever that is' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel myself about how successful my attempts are im starting to connect with the fact that people want to hear music not perfection whatever that is What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel myself about how successful my attempts are im starting to connect with the fact that people want to hear music not perfection whatever that is What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.66it/s]
--- Text 1771 --- Text: 'i feel like he has a very pleasant nearly transparent presence on lobelia though that presence was necessary nonetheless' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like he has a very pleasant nearly transparent presence on lobelia though that presence was necessary nonetheless What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like he has a very pleasant nearly transparent presence on lobelia though that presence was necessary nonetheless What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.18it/s] 40%|████ | 4/10 [00:00<00:00, 11.98it/s]
--- Text 1772 --- Text: 'i cant feel anything like they said why does everything always hurt so bad' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i cant feel anything like they said why does everything always hurt so bad What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i cant feel anything like they said why does everything always hurt so bad What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.38it/s]
--- Text 1773 --- Text: 'i have this grave feeling it will not be back until tomorrow and strangely enough i have accepted it' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i have this grave feeling it will not be back until tomorrow and strangely enough i have accepted it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have this grave feeling it will not be back until tomorrow and strangely enough i have accepted it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fear Predicted Emotion: fear --------------------
100%|██████████| 10/10 [00:00<00:00, 17.27it/s] 50%|█████ | 5/10 [00:00<00:00, 12.67it/s]
--- Text 1774 --- Text: 'i had been blessed to be running it for the th time how could i not be feeling anything but thankful at the many gifts this race had given me' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i had been blessed to be running it for the th time how could i not be feeling anything but thankful at the many gifts this race had given me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i had been blessed to be running it for the th time how could i not be feeling anything but thankful at the many gifts this race had given me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Thankfulness Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.67it/s] 100%|██████████| 10/10 [00:00<00:00, 16.45it/s]
--- Text 1775 --- Text: 'i suggest you take a look at them when you feel curious enough to know more things about specific english words related to familiar diseases' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i suggest you take a look at them when you feel curious enough to know more things about specific english words related to familiar diseases What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i suggest you take a look at them when you feel curious enough to know more things about specific english words related to familiar diseases What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: The doctor told me I had cancer. Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.48it/s] 10%|█ | 1/10 [00:00<00:01, 6.34it/s]
--- Text 1776 --- Text: 'i type these words i feel like i shouldn t be surprised' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i type these words i feel like i shouldn t be surprised What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is surprise. Predicted Emotion: surprise --- Constraint-Based Prompting --- Prompt: i type these words i feel like i shouldn t be surprised What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: surprise Predicted Emotion: surprise --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.69it/s]
--- Text 1777 --- Text: 'i know it that sucker is overhead and i feel triumphant' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i know it that sucker is overhead and i feel triumphant What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i know it that sucker is overhead and i feel triumphant What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: triumph Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.02it/s] 100%|██████████| 10/10 [00:00<00:00, 16.52it/s]
--- Text 1778 --- Text: 'i plan to do so by obtaining an mba and from that mba program i feel that the most valuable outcomes i would like' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i plan to do so by obtaining an mba and from that mba program i feel that the most valuable outcomes i would like What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The text is: "I plan to Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i plan to do so by obtaining an mba and from that mba program i feel that the most valuable outcomes i would like What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I plan to do so by obtaining an Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.53it/s]
--- Text 1779 --- Text: 'i feel a bit lonely just writing this because its not face to face with someone and i cant get feedback' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel a bit lonely just writing this because its not face to face with someone and i cant get feedback What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel a bit lonely just writing this because its not face to face with someone and i cant get feedback What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Loneliness Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.44it/s]
--- Text 1780 --- Text: 'i have some great friends and great housemates who have listened to how i feel and reminded me that its so unimportant and i should enjoy my life and be proud of myself' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i have some great friends and great housemates who have listened to how i feel and reminded me that its so unimportant and i should enjoy my life and be proud of myself What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have some great friends and great housemates who have listened to how i feel and reminded me that its so unimportant and i should enjoy my life and be proud of myself What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.74it/s] 40%|████ | 4/10 [00:00<00:00, 12.39it/s]
--- Text 1781 --- Text: 'when i learnt that my best friend had failed the exams' True Emotion: anger --- Zero-Shot Prompting --- Prompt: when i learnt that my best friend had failed the exams What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: when i learnt that my best friend had failed the exams What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.35it/s]
--- Text 1782 --- Text: 'i had told gerry yesterday that if i feel isolated it is my own fault' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i had told gerry yesterday that if i feel isolated it is my own fault What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i had told gerry yesterday that if i feel isolated it is my own fault What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.09it/s] 40%|████ | 4/10 [00:00<00:00, 11.51it/s]
--- Text 1783 --- Text: 'i feel these days living in fears just another way of dying before your time so today i am declaring myself fearless' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel these days living in fears just another way of dying before your time so today i am declaring myself fearless What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fearless Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i feel these days living in fears just another way of dying before your time so today i am declaring myself fearless What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fearless Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.01it/s]
--- Text 1784 --- Text: 'i started to feel like i was going mad as i was sure i could see stars floating in the water but whenever i went to grab one i came up with nothing' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i started to feel like i was going mad as i was sure i could see stars floating in the water but whenever i went to grab one i came up with nothing What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i started to feel like i was going mad as i was sure i could see stars floating in the water but whenever i went to grab one i came up with nothing What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Surprise Predicted Emotion: surprise --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.16it/s]
--- Text 1785 --- Text: 'i basically spent a miserable night crying and feeling terrified and sick to my stomach' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i basically spent a miserable night crying and feeling terrified and sick to my stomach What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i basically spent a miserable night crying and feeling terrified and sick to my stomach What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear. Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.44it/s]
--- Text 1786 --- Text: 'i am feeling the past few days a little distressed about not writing here as much' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i am feeling the past few days a little distressed about not writing here as much What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling the past few days a little distressed about not writing here as much What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.32it/s]
--- Text 1787 --- Text: 'im feeling all jolly and warm inside but i just feel empty' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im feeling all jolly and warm inside but i just feel empty What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling all jolly and warm inside but i just feel empty What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.24it/s] 50%|█████ | 5/10 [00:00<00:00, 13.43it/s]
--- Text 1788 --- Text: 'i just wanted to read books watch tv and feel miserable' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i just wanted to read books watch tv and feel miserable What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i just wanted to read books watch tv and feel miserable What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.54it/s]
--- Text 1789 --- Text: 'i was feeling a little fearful of trying to eat this damn thing' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i was feeling a little fearful of trying to eat this damn thing What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was feeling a little fearful of trying to eat this damn thing What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear. Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.91it/s]
--- Text 1790 --- Text: 'i to feel unwelcome at her apartment certainly not' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i to feel unwelcome at her apartment certainly not What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i to feel unwelcome at her apartment certainly not What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: The emotion of this text is: love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.30it/s]
--- Text 1791 --- Text: 'i took care of myself by avoiding family events that make me feel shitty' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i took care of myself by avoiding family events that make me feel shitty What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i took care of myself by avoiding family events that make me feel shitty What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.66it/s] 30%|███ | 3/10 [00:00<00:00, 11.15it/s]
--- Text 1792 --- Text: 'i did a body scan and realized that everything was feeling amazing' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i did a body scan and realized that everything was feeling amazing What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i did a body scan and realized that everything was feeling amazing What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.70it/s]
--- Text 1793 --- Text: 'i feel much more energized than on a gloomy rainy autumn day' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel much more energized than on a gloomy rainy autumn day What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel much more energized than on a gloomy rainy autumn day What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.73it/s]
--- Text 1794 --- Text: 'im sure i will feel fine in the morning' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im sure i will feel fine in the morning What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im sure i will feel fine in the morning What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fine Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.76it/s] 40%|████ | 4/10 [00:00<00:00, 12.90it/s]
--- Text 1795 --- Text: 'i look at others and feel jealous' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i look at others and feel jealous What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is jealous Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i look at others and feel jealous What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: jealousy. Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.76it/s]
--- Text 1796 --- Text: 'i feel like a moronic bastard' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like a moronic bastard What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like a moronic bastard What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.28it/s] 50%|█████ | 5/10 [00:00<00:00, 12.96it/s]
--- Text 1797 --- Text: 'i don t care if any of you read this but this is just what i feel when i m around you guys i feel hated' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i don t care if any of you read this but this is just what i feel when i m around you guys i feel hated What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i don t care if any of you read this but this is just what i feel when i m around you guys i feel hated What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.47it/s] 40%|████ | 4/10 [00:00<00:00, 12.59it/s]
--- Text 1798 --- Text: 'i feel the pressure to be funny all the time' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i feel the pressure to be funny all the time What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel the pressure to be funny all the time What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: pressure Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.33it/s] 50%|█████ | 5/10 [00:00<00:00, 12.54it/s]
--- Text 1799 --- Text: 'im okay with her getting married whirlwind style at the courthouse and going off to kentucky to live with him but im still feeling hurt by the betrayal and secretive style she had adopted' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im okay with her getting married whirlwind style at the courthouse and going off to kentucky to live with him but im still feeling hurt by the betrayal and secretive style she had adopted What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: im okay with her getting married whirlwind style at the courthouse and going off to kentucky to live with him but im still feeling hurt by the betrayal and secretive style she had adopted What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.71it/s]
--- Text 1800 --- Text: 'i feel is the most important question how would we handle this' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel is the most important question how would we handle this What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel is the most important question how would we handle this What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel is the most important question how Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.50it/s]
--- Text 1801 --- Text: 'i feel so pretty in them it doesnt matter how un glamorous the task is' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel so pretty in them it doesnt matter how un glamorous the task is What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so pretty in them it doesnt matter how un glamorous the task is What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Pretty Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.70it/s]
--- Text 1802 --- Text: 'i could feel the sincere enthusiasm of all the people who got involved in this project' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i could feel the sincere enthusiasm of all the people who got involved in this project What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i could feel the sincere enthusiasm of all the people who got involved in this project What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.74it/s] 40%|████ | 4/10 [00:00<00:00, 11.99it/s]
--- Text 1803 --- Text: 'i feel remorseful for the crimes that were committed intentionally or unintentionally and whether or not i had known about it or not known about it' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel remorseful for the crimes that were committed intentionally or unintentionally and whether or not i had known about it or not known about it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is remor Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel remorseful for the crimes that were committed intentionally or unintentionally and whether or not i had known about it or not known about it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Remorse Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.75it/s] 40%|████ | 4/10 [00:00<00:00, 11.39it/s]
--- Text 1804 --- Text: 'i can t quite figure out how i feel i m not devastated like i was with lucy and i m not sure if that s because it s easier to do after the first time or what' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i can t quite figure out how i feel i m not devastated like i was with lucy and i m not sure if that s because it s easier to do after the first time or what What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i can t quite figure out how i feel i m not devastated like i was with lucy and i m not sure if that s because it s easier to do after the first time or what What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.45it/s]
--- Text 1805 --- Text: 'i am feeling depressed cursing my luck' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i am feeling depressed cursing my luck What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling depressed cursing my luck What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.97it/s] 20%|██ | 2/10 [00:00<00:00, 9.34it/s]
--- Text 1806 --- Text: 'i feel truly heartbroken that hyun joongs fans can be so hateful' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel truly heartbroken that hyun joongs fans can be so hateful What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion in this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel truly heartbroken that hyun joongs fans can be so hateful What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.20it/s]
--- Text 1807 --- Text: 'i feel guilty i wont be able to give this little one the same amount of time with just me' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel guilty i wont be able to give this little one the same amount of time with just me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel guilty i wont be able to give this little one the same amount of time with just me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.59it/s]
--- Text 1808 --- Text: 'i know for a fact that he treated everyone this way his love seemed boundless but he also made me feel important' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i know for a fact that he treated everyone this way his love seemed boundless but he also made me feel important What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i know for a fact that he treated everyone this way his love seemed boundless but he also made me feel important What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.59it/s]
--- Text 1809 --- Text: 'im feeling a little anxious about the whole thing' True Emotion: fear --- Zero-Shot Prompting --- Prompt: im feeling a little anxious about the whole thing What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling a little anxious about the whole thing What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anxiety Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.49it/s]
--- Text 1810 --- Text: 'i am sure its meant as a celebration of the various shades of red out there i feel insulted' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i am sure its meant as a celebration of the various shades of red out there i feel insulted What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am sure its meant as a celebration of the various shades of red out there i feel insulted What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 8.53it/s]
--- Text 1811 --- Text: 'i was however totally petrified of feeling it scared to death of giving in and releasing it and afraid i wouldnt be able to cap it again' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i was however totally petrified of feeling it scared to death of giving in and releasing it and afraid i wouldnt be able to cap it again What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was however totally petrified of feeling it scared to death of giving in and releasing it and afraid i wouldnt be able to cap it again What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear. Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 60%|██████ | 6/10 [00:00<00:00, 14.46it/s]
--- Text 1812 --- Text: 'i know i feel vulnerable' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i know i feel vulnerable What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i know i feel vulnerable What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: vulnerable Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.59it/s]
--- Text 1813 --- Text: 'i have been feeling so melancholy and alone' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i have been feeling so melancholy and alone What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have been feeling so melancholy and alone What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.34it/s]
--- Text 1814 --- Text: 'im feeling exponentially more useless on the farm as each day passes' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im feeling exponentially more useless on the farm as each day passes What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling exponentially more useless on the farm as each day passes What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 0%| | 0/10 [00:00<?, ?it/s]
--- Text 1815 --- Text: 'i would point out that it really could have used a bit more attention on the writing aspect as it feels a bit dull in few places' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i would point out that it really could have used a bit more attention on the writing aspect as it feels a bit dull in few places What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i would point out that it really could have used a bit more attention on the writing aspect as it feels a bit dull in few places What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.91it/s]
--- Text 1816 --- Text: 'i love a hearty chat where i mean everything that i say and laugh from the heart gut w e not because i wanna let the person feel im entertained' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i love a hearty chat where i mean everything that i say and laugh from the heart gut w e not because i wanna let the person feel im entertained What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i love a hearty chat where i mean everything that i say and laugh from the heart gut w e not because i wanna let the person feel im entertained What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.67it/s]
--- Text 1817 --- Text: 'i also know that if today i refuse to hate jews or anybody else it is because i know how it feels to be hated' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i also know that if today i refuse to hate jews or anybody else it is because i know how it feels to be hated What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i also know that if today i refuse to hate jews or anybody else it is because i know how it feels to be hated What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.78it/s]
--- Text 1818 --- Text: 'i have that feeling that spark and i am not sure where it is going or if it will ever turn into that flame' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i have that feeling that spark and i am not sure where it is going or if it will ever turn into that flame What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have that feeling that spark and i am not sure where it is going or if it will ever turn into that flame What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.78it/s]
--- Text 1819 --- Text: 'i roll my tongue over your labia sucking and nibbling drawing your flesh into my mouth and letting you feel the delicate pinch of my teeth' True Emotion: love --- Zero-Shot Prompting --- Prompt: i roll my tongue over your labia sucking and nibbling drawing your flesh into my mouth and letting you feel the delicate pinch of my teeth What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i roll my tongue over your labia sucking and nibbling drawing your flesh into my mouth and letting you feel the delicate pinch of my teeth What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.95it/s]
--- Text 1820 --- Text: 'i feel so frustrated because i had a long weekday and i dont really have plenty of rest and right now he keeps on coming in the room' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel so frustrated because i had a long weekday and i dont really have plenty of rest and right now he keeps on coming in the room What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so frustrated because i had a long weekday and i dont really have plenty of rest and right now he keeps on coming in the room What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: frustration Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.13it/s] 40%|████ | 4/10 [00:00<00:00, 12.79it/s]
--- Text 1821 --- Text: 'i feel like ive been neglectful' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like ive been neglectful What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel like ive been neglectful What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.29it/s]
--- Text 1822 --- Text: 'i feel like a boring blogger lately' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like a boring blogger lately What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like a boring blogger lately What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.80it/s]
--- Text 1823 --- Text: 'i soon realized that an initial attraction to an activity that feels playful is often followed by a desire to practice to perfect the talent that led to the original enjoyment' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i soon realized that an initial attraction to an activity that feels playful is often followed by a desire to practice to perfect the talent that led to the original enjoyment What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i soon realized that an initial attraction to an activity that feels playful is often followed by a desire to practice to perfect the talent that led to the original enjoyment What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.84it/s]
--- Text 1824 --- Text: 'i always feel a little jealous of my son because when i joined the church i went almost directly into young women so i didnt learn the primary songs' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i always feel a little jealous of my son because when i joined the church i went almost directly into young women so i didnt learn the primary songs What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i always feel a little jealous of my son because when i joined the church i went almost directly into young women so i didnt learn the primary songs What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.44it/s] 40%|████ | 4/10 [00:00<00:00, 12.40it/s]
--- Text 1825 --- Text: 'i feel as though it is worthwhile and career wise' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel as though it is worthwhile and career wise What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel as though it is worthwhile and career wise What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.03it/s]
--- Text 1826 --- Text: 'i still feel like there are more than enough to keep me entertained while still being just a few to keep dusted' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i still feel like there are more than enough to keep me entertained while still being just a few to keep dusted What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i still feel like there are more than enough to keep me entertained while still being just a few to keep dusted What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.75it/s] 100%|██████████| 10/10 [00:00<00:00, 16.41it/s]
--- Text 1827 --- Text: 'i don t always feel like i have amazing style and most days i choose comfort over anything else but there is one thing that i feel makes all the difference in how i feel about myself and that is makeup' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i don t always feel like i have amazing style and most days i choose comfort over anything else but there is one thing that i feel makes all the difference in how i feel about myself and that is makeup What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i don t always feel like i have amazing style and most days i choose comfort over anything else but there is one thing that i feel makes all the difference in how i feel about myself and that is makeup What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: The emotion of this text is: comfort Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.76it/s]
--- Text 1828 --- Text: 'i feel numb i dont experience anything because of the numbness and of me just always feels something is going to go wrong' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel numb i dont experience anything because of the numbness and of me just always feels something is going to go wrong What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel numb i dont experience anything because of the numbness and of me just always feels something is going to go wrong What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.52it/s]
--- Text 1829 --- Text: 'im feeling weepy already' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im feeling weepy already What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling weepy already What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 10.45it/s]
--- Text 1830 --- Text: 'i look over and to my utter horror i see a man holding the elevator door open instead of feeling terrified or even telling the guy to get off the elevator i imagine the elevator chewing on him like a metallic pacman not pacquiao the other yellow guy' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i look over and to my utter horror i see a man holding the elevator door open instead of feeling terrified or even telling the guy to get off the elevator i imagine the elevator chewing on him like a metallic pacman not pacquiao the other yellow guy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i look over and to my utter horror i see a man holding the elevator door open instead of feeling terrified or even telling the guy to get off the elevator i imagine the elevator chewing on him like a metallic pacman not pacquiao the other yellow guy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fear Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.53it/s]
--- Text 1831 --- Text: 'i havent needed the pain meds maybe i will chillax with some wine feeling all elegant like' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i havent needed the pain meds maybe i will chillax with some wine feeling all elegant like What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i havent needed the pain meds maybe i will chillax with some wine feeling all elegant like What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.31it/s] 40%|████ | 4/10 [00:00<00:00, 12.36it/s]
--- Text 1832 --- Text: 'i feel virtuous and tough when i wear a hat jeans and a tshirt without worrying' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel virtuous and tough when i wear a hat jeans and a tshirt without worrying What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel virtuous and tough when i wear a hat jeans and a tshirt without worrying What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.09it/s]
--- Text 1833 --- Text: 'i disagree with my parents on many issues and will sometimes let them know my feelings in unkind ways' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i disagree with my parents on many issues and will sometimes let them know my feelings in unkind ways What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i disagree with my parents on many issues and will sometimes let them know my feelings in unkind ways What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.91it/s]
--- Text 1834 --- Text: 'i go without a new post the more guilty i feel for leaving all my loyal readers in the dark about my progress in this crazy quest i set out on days ago' True Emotion: love --- Zero-Shot Prompting --- Prompt: i go without a new post the more guilty i feel for leaving all my loyal readers in the dark about my progress in this crazy quest i set out on days ago What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i go without a new post the more guilty i feel for leaving all my loyal readers in the dark about my progress in this crazy quest i set out on days ago What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.29it/s]
--- Text 1835 --- Text: 'i feel so eager to prove to my friend that im not like that' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel so eager to prove to my friend that im not like that What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so eager to prove to my friend that im not like that What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel so eager to prove to my Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.27it/s]
--- Text 1836 --- Text: 'i have to admit that i feel the teensiest bit envious of my friends who live there' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i have to admit that i feel the teensiest bit envious of my friends who live there What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have to admit that i feel the teensiest bit envious of my friends who live there What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.79it/s]
--- Text 1837 --- Text: 'i feel it so easily like that of a gentle rain that warms the earth and brings laughter and delight from all those that pause to take notice of such a blessing' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel it so easily like that of a gentle rain that warms the earth and brings laughter and delight from all those that pause to take notice of such a blessing What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel it so easily like that of a gentle rain that warms the earth and brings laughter and delight from all those that pause to take notice of such a blessing What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.07it/s] 30%|███ | 3/10 [00:00<00:00, 10.71it/s]
--- Text 1838 --- Text: 'i hate these feelings in my heart i hate that work stressed me out i hate that cornelius wont let me get my way im frustrated lord' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i hate these feelings in my heart i hate that work stressed me out i hate that cornelius wont let me get my way im frustrated lord What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i hate these feelings in my heart i hate that work stressed me out i hate that cornelius wont let me get my way im frustrated lord What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.56it/s]
--- Text 1839 --- Text: 'im still feeling pretty low and demotivated including ups' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im still feeling pretty low and demotivated including ups What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im still feeling pretty low and demotivated including ups What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.36it/s] 50%|█████ | 5/10 [00:00<00:00, 13.00it/s]
--- Text 1840 --- Text: 'i breathe into the feelings in my body resisting my mind s clever attempts to analyse what i m feeling' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i breathe into the feelings in my body resisting my mind s clever attempts to analyse what i m feeling What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i breathe into the feelings in my body resisting my mind s clever attempts to analyse what i m feeling What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.27it/s]
--- Text 1841 --- Text: 'ill likely post more on those later but feel free to ask if you have questions' True Emotion: joy --- Zero-Shot Prompting --- Prompt: ill likely post more on those later but feel free to ask if you have questions What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: ill likely post more on those later but feel free to ask if you have questions What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: "I have just been offered a job Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.55it/s]
--- Text 1842 --- Text: 'i always end up feeling unwelcome and sad' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i always end up feeling unwelcome and sad What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i always end up feeling unwelcome and sad What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.74it/s] 100%|██████████| 10/10 [00:00<00:00, 17.43it/s]
--- Text 1843 --- Text: 'i feel so amazing musicjuzz' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel so amazing musicjuzz What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i feel so amazing musicjuzz What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel so amazing musicjuzz Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.06it/s]
--- Text 1844 --- Text: 'i feel so giggly reading your comment tags' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel so giggly reading your comment tags What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so giggly reading your comment tags What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: 😂😂 Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.60it/s]
--- Text 1845 --- Text: 'i must add the crowd was similar to last night except it had a much more laid back stoner feel with supporting cast of parents escaped from their kids' True Emotion: love --- Zero-Shot Prompting --- Prompt: i must add the crowd was similar to last night except it had a much more laid back stoner feel with supporting cast of parents escaped from their kids What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i must add the crowd was similar to last night except it had a much more laid back stoner feel with supporting cast of parents escaped from their kids What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.71it/s] 20%|██ | 2/10 [00:00<00:00, 9.54it/s]
--- Text 1846 --- Text: 'i do that made me feel excited about life' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i do that made me feel excited about life What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i do that made me feel excited about life What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy. Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 10%|█ | 1/10 [00:00<00:01, 5.39it/s]
--- Text 1847 --- Text: 'i have been feeling regretful recently that i did not know back then that the abuse was not my fault and that it did not happen because of who i was but because of who they were' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i have been feeling regretful recently that i did not know back then that the abuse was not my fault and that it did not happen because of who i was but because of who they were What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have been feeling regretful recently that i did not know back then that the abuse was not my fault and that it did not happen because of who i was but because of who they were What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: regret Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.88it/s]
--- Text 1848 --- Text: 'i am not feeling as terrific as i have been' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am not feeling as terrific as i have been What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am not feeling as terrific as i have been What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.37it/s]
--- Text 1849 --- Text: 'i feel quite glamorous in this dress' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel quite glamorous in this dress What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel quite glamorous in this dress What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Glamour Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.70it/s]
--- Text 1850 --- Text: 'i feel like i wouldnt have a longing if only we could have a baby and have that new experience together' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel like i wouldnt have a longing if only we could have a baby and have that new experience together What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like i wouldnt have a longing if only we could have a baby and have that new experience together What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.26it/s]
--- Text 1851 --- Text: 'i am feeling a lot more positive about the future of the virtual birth unit and simulation in midwifery education' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am feeling a lot more positive about the future of the virtual birth unit and simulation in midwifery education What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling a lot more positive about the future of the virtual birth unit and simulation in midwifery education What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.18it/s]
--- Text 1852 --- Text: 'i just want that feeling of not caring about unnecessary stuff like i felt before' True Emotion: love --- Zero-Shot Prompting --- Prompt: i just want that feeling of not caring about unnecessary stuff like i felt before What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i just want that feeling of not caring about unnecessary stuff like i felt before What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.45it/s]
--- Text 1853 --- Text: 'i feel so very keen to leave the country atm' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel so very keen to leave the country atm What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so very keen to leave the country atm What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: i feel so very keen to leave the Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.41it/s]
--- Text 1854 --- Text: 'i knowing that to this day still makes her feel not shy' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i knowing that to this day still makes her feel not shy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i knowing that to this day still makes her feel not shy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.36it/s]
--- Text 1855 --- Text: 'i decided to actually paint this piece in a common canvas because painting in canvas make me feel very artistic' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i decided to actually paint this piece in a common canvas because painting in canvas make me feel very artistic What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i decided to actually paint this piece in a common canvas because painting in canvas make me feel very artistic What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.87it/s] 40%|████ | 4/10 [00:00<00:00, 12.01it/s]
--- Text 1856 --- Text: 'i really need to find my nitch up here in vt i feel very lonely and bored and it s taking it s toll a href http twitter' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i really need to find my nitch up here in vt i feel very lonely and bored and it s taking it s toll a href http twitter What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i really need to find my nitch up here in vt i feel very lonely and bored and it s taking it s toll a href http twitter What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.67it/s]
--- Text 1857 --- Text: 'i felt apprehensive in regards to the party oftentimes in the past other men have made me feel resentful towards them when i attended with them' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i felt apprehensive in regards to the party oftentimes in the past other men have made me feel resentful towards them when i attended with them What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i felt apprehensive in regards to the party oftentimes in the past other men have made me feel resentful towards them when i attended with them What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fear Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.54it/s]
--- Text 1858 --- Text: 'i feel so peaceful and happy' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel so peaceful and happy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so peaceful and happy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: happiness Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.09it/s] 40%|████ | 4/10 [00:00<00:00, 11.79it/s]
--- Text 1859 --- Text: 'i was feeling pretty distracted with a few things that have been going on so it felt good to go with a clear mind' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i was feeling pretty distracted with a few things that have been going on so it felt good to go with a clear mind What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is calmness Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was feeling pretty distracted with a few things that have been going on so it felt good to go with a clear mind What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.56it/s]
--- Text 1860 --- Text: 'i thought maybe once i started running i would feel ok' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i thought maybe once i started running i would feel ok What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i thought maybe once i started running i would feel ok What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.61it/s] 40%|████ | 4/10 [00:00<00:00, 10.77it/s]
--- Text 1861 --- Text: 'i feel so dirty but after spending a day at the mk show me and a buddy decided we would get the two player starter between us luckily for us both i liked the everblight and he liked the circle maybe a tad to much so it all worked out well' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel so dirty but after spending a day at the mk show me and a buddy decided we would get the two player starter between us luckily for us both i liked the everblight and he liked the circle maybe a tad to much so it all worked out well What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i feel so dirty but after spending a day at the mk show me and a buddy decided we would get the two player starter between us luckily for us both i liked the everblight and he liked the circle maybe a tad to much so it all worked out well What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.24it/s] 40%|████ | 4/10 [00:00<00:00, 12.41it/s]
--- Text 1862 --- Text: 'i chance that difficult to accommodate with the feeling of a jehovah and benevolent lord' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i chance that difficult to accommodate with the feeling of a jehovah and benevolent lord What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i chance that difficult to accommodate with the feeling of a jehovah and benevolent lord What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.75it/s]
--- Text 1863 --- Text: 'i just say the things that i want without even thinking what the person would feel its rude right' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i just say the things that i want without even thinking what the person would feel its rude right What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i just say the things that i want without even thinking what the person would feel its rude right What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I just say the things that I want Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.24it/s] 100%|██████████| 10/10 [00:00<00:00, 17.14it/s]
--- Text 1864 --- Text: 'i don t have the feeling of divine vibrations' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i don t have the feeling of divine vibrations What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i don t have the feeling of divine vibrations What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I don't have the feeling of Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.45it/s]
--- Text 1865 --- Text: 'i feel unimportant when he spends nights out with sara and i get no phone call' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel unimportant when he spends nights out with sara and i get no phone call What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel unimportant when he spends nights out with sara and i get no phone call What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.66it/s]
--- Text 1866 --- Text: 'i dont know if i should let go and feel that vain or should i wait and stay in vain' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i dont know if i should let go and feel that vain or should i wait and stay in vain What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i dont know if i should let go and feel that vain or should i wait and stay in vain What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Vain Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.24it/s]
--- Text 1867 --- Text: 'i feel so lucky that i get to experience this joy at sssas every day' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel so lucky that i get to experience this joy at sssas every day What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so lucky that i get to experience this joy at sssas every day What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.60it/s]
--- Text 1868 --- Text: 'i feel so boring all the time' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel so boring all the time What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so boring all the time What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: boredom Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.25it/s]
--- Text 1869 --- Text: 'im not the one who feel bothered about this' True Emotion: anger --- Zero-Shot Prompting --- Prompt: im not the one who feel bothered about this What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im not the one who feel bothered about this What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.70it/s]
--- Text 1870 --- Text: 'i feel your frustration but it s time to calm the hell down' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel your frustration but it s time to calm the hell down What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel your frustration but it s time to calm the hell down What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: calm Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.51it/s]
--- Text 1871 --- Text: 'i slowly realized that even the next day when the six hour effects had worn off i was feeling more energetic and could concentrate working through emotional crap better' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i slowly realized that even the next day when the six hour effects had worn off i was feeling more energetic and could concentrate working through emotional crap better What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i slowly realized that even the next day when the six hour effects had worn off i was feeling more energetic and could concentrate working through emotional crap better What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Concentrate Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.79it/s] 40%|████ | 4/10 [00:00<00:00, 11.91it/s]
--- Text 1872 --- Text: 'i was gifted one of the books but am feeling a bit intimidated to take on the intricate work' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i was gifted one of the books but am feeling a bit intimidated to take on the intricate work What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was gifted one of the books but am feeling a bit intimidated to take on the intricate work What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.93it/s]
--- Text 1873 --- Text: 'i feel the presence of the divine with you when you are buried inside me smiling down at me your sweat dripping into my eager mouth' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel the presence of the divine with you when you are buried inside me smiling down at me your sweat dripping into my eager mouth What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel the presence of the divine with you when you are buried inside me smiling down at me your sweat dripping into my eager mouth What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 16.84it/s] 40%|████ | 4/10 [00:00<00:00, 12.71it/s]
--- Text 1874 --- Text: 'i entered the office though feeling the monday blues with a joyful and serene spirit dominating' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i entered the office though feeling the monday blues with a joyful and serene spirit dominating What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i entered the office though feeling the monday blues with a joyful and serene spirit dominating What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.02it/s]
--- Text 1875 --- Text: 'i feel shy about it all and also a little concerned whether my new title will distance me away from people i care for' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel shy about it all and also a little concerned whether my new title will distance me away from people i care for What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel shy about it all and also a little concerned whether my new title will distance me away from people i care for What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fear Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.39it/s]
--- Text 1876 --- Text: 'i feel productive and active but i have the balance i need' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel productive and active but i have the balance i need What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel productive and active but i have the balance i need What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.39it/s]
--- Text 1877 --- Text: 'i need a break or im feeling stressed out' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i need a break or im feeling stressed out What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i need a break or im feeling stressed out What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: stress. Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.13it/s] 40%|████ | 4/10 [00:00<00:00, 12.34it/s]
--- Text 1878 --- Text: 'ive taken yoga classes for years but for the past few days i was feeling very anxious abou' True Emotion: fear --- Zero-Shot Prompting --- Prompt: ive taken yoga classes for years but for the past few days i was feeling very anxious abou What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: ive taken yoga classes for years but Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: ive taken yoga classes for years but for the past few days i was feeling very anxious abou What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Anxiety Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.89it/s] 40%|████ | 4/10 [00:00<00:00, 12.03it/s]
--- Text 1879 --- Text: 'i am sitting on the couch and im feeling rather ashamed so to get in the act of things i slap myself' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i am sitting on the couch and im feeling rather ashamed so to get in the act of things i slap myself What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i am sitting on the couch and im feeling rather ashamed so to get in the act of things i slap myself What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: ashamed Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.23it/s] 40%|████ | 4/10 [00:00<00:00, 12.31it/s]
--- Text 1880 --- Text: 'i feel ashamed and so i tried my very best to help them' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel ashamed and so i tried my very best to help them What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel ashamed and so i tried my very best to help them What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: ashamed Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.09it/s]
--- Text 1881 --- Text: 'i feel so glad that im able to have the time to spend some time with my family now' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel so glad that im able to have the time to spend some time with my family now What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so glad that im able to have the time to spend some time with my family now What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.79it/s]
--- Text 1882 --- Text: 'i had my carrot sticks not on the program they want you to eat super low gi veggies and carrots are relatively high in sugar however they were convenient and later another shake but i was still feeling pretty lousy' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i had my carrot sticks not on the program they want you to eat super low gi veggies and carrots are relatively high in sugar however they were convenient and later another shake but i was still feeling pretty lousy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i had my carrot sticks not on the program they want you to eat super low gi veggies and carrots are relatively high in sugar however they were convenient and later another shake but i was still feeling pretty lousy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.74it/s] 30%|███ | 3/10 [00:00<00:00, 11.41it/s]
--- Text 1883 --- Text: 'i feel watching him grow into a self assured life loving boy' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel watching him grow into a self assured life loving boy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i feel watching him grow into a self assured life loving boy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.03it/s]
--- Text 1884 --- Text: 'i had the feeling that it might not have been taken as the truthful and sincere compliment it would have been' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i had the feeling that it might not have been taken as the truthful and sincere compliment it would have been What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i had the feeling that it might not have been taken as the truthful and sincere compliment it would have been What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.58it/s]
--- Text 1885 --- Text: 'i will feel a dull pain for no reason at all' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i will feel a dull pain for no reason at all What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i will feel a dull pain for no reason at all What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.02it/s]
--- Text 1886 --- Text: 'i feel like im working with half of my voice caleb and i make it through a really wonderful night at the comus inn' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like im working with half of my voice caleb and i make it through a really wonderful night at the comus inn What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like im working with half of my voice caleb and i make it through a really wonderful night at the comus inn What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.00it/s]
--- Text 1887 --- Text: 'i feel lost and then found november i have told jamie this several times' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel lost and then found november i have told jamie this several times What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel lost and then found november i have told jamie this several times What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: found Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.71it/s]
--- Text 1888 --- Text: 'i feel like some of you have pains and you cannot imagine becoming passionate about the group or the idea that is causing pain' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel like some of you have pains and you cannot imagine becoming passionate about the group or the idea that is causing pain What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like some of you have pains and you cannot imagine becoming passionate about the group or the idea that is causing pain What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.12it/s] 40%|████ | 4/10 [00:00<00:00, 12.21it/s]
--- Text 1889 --- Text: 'i feel comfortable here there was a huge niche market waiting to be explored' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel comfortable here there was a huge niche market waiting to be explored What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: comfort Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel comfortable here there was a huge niche market waiting to be explored What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Comfort Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.93it/s]
--- Text 1890 --- Text: 'i feel at leaving work is hot and complicated and tempered with the disquiet of a future that feels out of my hands' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel at leaving work is hot and complicated and tempered with the disquiet of a future that feels out of my hands What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel at leaving work is hot and complicated and tempered with the disquiet of a future that feels out of my hands What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.47it/s] 50%|█████ | 5/10 [00:00<00:00, 13.58it/s]
--- Text 1891 --- Text: 'i was asked to toast with champagne at the death bed and i remember feeling disgusted' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i was asked to toast with champagne at the death bed and i remember feeling disgusted What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was asked to toast with champagne at the death bed and i remember feeling disgusted What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.49it/s] 40%|████ | 4/10 [00:00<00:00, 12.51it/s]
--- Text 1892 --- Text: 'i can remember feeling that relaxed was last summer on the boat' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i can remember feeling that relaxed was last summer on the boat What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: relax Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i can remember feeling that relaxed was last summer on the boat What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.18it/s]
--- Text 1893 --- Text: 'i dont really know why but ive also been feeling really rebellious' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i dont really know why but ive also been feeling really rebellious What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i dont really know why but ive also been feeling really rebellious What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 11.65it/s]
--- Text 1894 --- Text: 'i get scared i feel ignored i feel happy i get silly i choke on my own words i make wishes i have dreams and i still want to believe anything could happen in this world for an ordinary girl like you like me for an ordinary girl like you like me how are you' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i get scared i feel ignored i feel happy i get silly i choke on my own words i make wishes i have dreams and i still want to believe anything could happen in this world for an ordinary girl like you like me for an ordinary girl like you like me how are you What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i get scared i feel ignored i feel happy i get silly i choke on my own words i make wishes i have dreams and i still want to believe anything could happen in this world for an ordinary girl like you like me for an ordinary girl like you like me how are you What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.59it/s]
--- Text 1895 --- Text: 'i am not sure how i feel i think because i felt like i already knew i have already sort of accepted it' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am not sure how i feel i think because i felt like i already knew i have already sort of accepted it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am not sure how i feel i think because i felt like i already knew i have already sort of accepted it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.18it/s]
--- Text 1896 --- Text: 'i remember that i moved them but i cant remember where and i feel so foolish' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i remember that i moved them but i cant remember where and i feel so foolish What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i remember that i moved them but i cant remember where and i feel so foolish What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.37it/s]
--- Text 1897 --- Text: 'i have been feeling a little or a lot lost' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i have been feeling a little or a lot lost What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have been feeling a little or a lot lost What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: lost Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.95it/s]
--- Text 1898 --- Text: 'i was stupid and said yes which made me feel idiotic because i didnt stick to my guns and do what i had set out to do' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i was stupid and said yes which made me feel idiotic because i didnt stick to my guns and do what i had set out to do What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was stupid and said yes which made me feel idiotic because i didnt stick to my guns and do what i had set out to do What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Stupid Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.47it/s]
--- Text 1899 --- Text: 'im feeling a little more hopeful about the future of my career' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im feeling a little more hopeful about the future of my career What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling a little more hopeful about the future of my career What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: hopefulness. Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.31it/s]
--- Text 1900 --- Text: 'ive got a off sale the ad says starting tomorrow but im feeling generous and started it now' True Emotion: love --- Zero-Shot Prompting --- Prompt: ive got a off sale the ad says starting tomorrow but im feeling generous and started it now What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: ive got a off sale the ad says starting tomorrow but im feeling generous and started it now What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.68it/s]
--- Text 1901 --- Text: 'i often feel discouraged and frustrated and i am not where i want to be in life right now' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i often feel discouraged and frustrated and i am not where i want to be in life right now What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i often feel discouraged and frustrated and i am not where i want to be in life right now What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.23it/s]
--- Text 1902 --- Text: 'i did about nothing today and feel a little regretful' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i did about nothing today and feel a little regretful What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i did about nothing today and feel a little regretful What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Regret Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.71it/s] 30%|███ | 3/10 [00:00<00:00, 10.90it/s]
--- Text 1903 --- Text: 'i ever recognized what it was to feel passionate about something was with music' True Emotion: love --- Zero-Shot Prompting --- Prompt: i ever recognized what it was to feel passionate about something was with music What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i ever recognized what it was to feel passionate about something was with music What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.04it/s]
--- Text 1904 --- Text: 'im upset with myself because i really feel like i have a blank years from years old' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im upset with myself because i really feel like i have a blank years from years old What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im upset with myself because i really feel like i have a blank years from years old What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.77it/s] 100%|██████████| 10/10 [00:00<00:00, 16.42it/s]
--- Text 1905 --- Text: 'i feel is an acceptable and significant modernization to the storyline not a detraction' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel is an acceptable and significant modernization to the storyline not a detraction What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i feel is an acceptable and significant modernization to the storyline not a detraction What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: The emotion of this text is: love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.94it/s]
--- Text 1906 --- Text: 'im feeling pretty homesick this week but i suppose thats to be expected' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im feeling pretty homesick this week but i suppose thats to be expected What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling pretty homesick this week but i suppose thats to be expected What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.51it/s]
--- Text 1907 --- Text: 'i dont know what has been wrong with me the past few days i almost feel homesick and i havent even left for australia yet' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i dont know what has been wrong with me the past few days i almost feel homesick and i havent even left for australia yet What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i dont know what has been wrong with me the past few days i almost feel homesick and i havent even left for australia yet What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.19it/s]
--- Text 1908 --- Text: 'i feel cranky tonight so im not really updating properly' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel cranky tonight so im not really updating properly What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel cranky tonight so im not really updating properly What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.21it/s]
--- Text 1909 --- Text: 'i always feel stupid afterwards' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i always feel stupid afterwards What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i always feel stupid afterwards What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: stupid Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.48it/s]
--- Text 1910 --- Text: 'i feel appalled right now' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel appalled right now What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel appalled right now What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: appalled Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.74it/s] 40%|████ | 4/10 [00:00<00:00, 12.72it/s]
--- Text 1911 --- Text: 'i feel underappreciated and under valued' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel underappreciated and under valued What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel underappreciated and under valued What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.79it/s]
--- Text 1912 --- Text: 'im ok with that it feels a little weird' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: im ok with that it feels a little weird What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im ok with that it feels a little weird What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I'm okay with that it feels Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.06it/s] 40%|████ | 4/10 [00:00<00:00, 12.48it/s]
--- Text 1913 --- Text: 'i never feel shy to call or send a billion text messages to and i wont be bugging her' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i never feel shy to call or send a billion text messages to and i wont be bugging her What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i never feel shy to call or send a billion text messages to and i wont be bugging her What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 16.43it/s] 20%|██ | 2/10 [00:00<00:00, 8.78it/s]
--- Text 1914 --- Text: 'i feel enraged by the amount of people participating for the chance to break things or those who treat it as a tourist event' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel enraged by the amount of people participating for the chance to break things or those who treat it as a tourist event What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i feel enraged by the amount of people participating for the chance to break things or those who treat it as a tourist event What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger. Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 60%|██████ | 6/10 [00:00<00:00, 13.46it/s]
--- Text 1915 --- Text: 'i actually feel halfway benevolent' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i actually feel halfway benevolent What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i actually feel halfway benevolent What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: benevolent Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.00it/s]
--- Text 1916 --- Text: 'i like being in church on sundays it makes me feel more virtuous how self effacing and more settled for the week ahead' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i like being in church on sundays it makes me feel more virtuous how self effacing and more settled for the week ahead What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i like being in church on sundays it makes me feel more virtuous how self effacing and more settled for the week ahead What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: More settled Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.81it/s]
--- Text 1917 --- Text: 'i am thinking is the fact because xanax slows your system down it allows you to feel very relaxed but also it might leave you with a not enough energy and motivation' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am thinking is the fact because xanax slows your system down it allows you to feel very relaxed but also it might leave you with a not enough energy and motivation What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am thinking is the fact because xanax slows your system down it allows you to feel very relaxed but also it might leave you with a not enough energy and motivation What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.59it/s]
--- Text 1918 --- Text: 'im crashing and i feel all irritable and estrogen ish' True Emotion: anger --- Zero-Shot Prompting --- Prompt: im crashing and i feel all irritable and estrogen ish What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im crashing and i feel all irritable and estrogen ish What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: irritability Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.80it/s] 70%|███████ | 7/10 [00:00<00:00, 13.68it/s]
--- Text 1919 --- Text: 'i ignore this voice as well knowing by now it doesn t matter if i feel humiliated by what you request of me i like that feeling i welcome that flushed hot feeling of embarrassment that you can arouse in me' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i ignore this voice as well knowing by now it doesn t matter if i feel humiliated by what you request of me i like that feeling i welcome that flushed hot feeling of embarrassment that you can arouse in me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i ignore this voice as well knowing by now it doesn t matter if i feel humiliated by what you request of me i like that feeling i welcome that flushed hot feeling of embarrassment that you can arouse in me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: 5. embarrassment Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.03it/s] 50%|█████ | 5/10 [00:00<00:00, 13.15it/s]
--- Text 1920 --- Text: 'i feel rotten remind me that your fruit won t spoil' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel rotten remind me that your fruit won t spoil What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel rotten remind me that your fruit won t spoil What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.21it/s] 50%|█████ | 5/10 [00:00<00:00, 12.68it/s]
--- Text 1921 --- Text: 'i guess it could be described as me just not really feeling like i m a part of the popular bands the up and comers or the growing local band' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i guess it could be described as me just not really feeling like i m a part of the popular bands the up and comers or the growing local band What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i guess it could be described as me just not really feeling like i m a part of the popular bands the up and comers or the growing local band What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.18it/s]
--- Text 1922 --- Text: 'i am on top of my game and my fingers feel strong and loose' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i am on top of my game and my fingers feel strong and loose What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am on top of my game and my fingers feel strong and loose What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 11.62it/s]
--- Text 1923 --- Text: 'i realized that i would be sad to leave this plane so soon and that just because i am feeling unloved and rejected there is no need to transfer those feelings of sadness on to those of my children left behind who i know do love and appreciate me and their father' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i realized that i would be sad to leave this plane so soon and that just because i am feeling unloved and rejected there is no need to transfer those feelings of sadness on to those of my children left behind who i know do love and appreciate me and their father What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i realized that i would be sad to leave this plane so soon and that just because i am feeling unloved and rejected there is no need to transfer those feelings of sadness on to those of my children left behind who i know do love and appreciate me and their father What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.18it/s]
--- Text 1924 --- Text: 'i can choose to tell the whole word what im feeling now or just fake it with some happy stories' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i can choose to tell the whole word what im feeling now or just fake it with some happy stories What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i can choose to tell the whole word what im feeling now or just fake it with some happy stories What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.00it/s]
--- Text 1925 --- Text: 'i never dreamed i would be so busy so soon in the new year but i am loving it and feeling so very gracious and fortunate' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i never dreamed i would be so busy so soon in the new year but i am loving it and feeling so very gracious and fortunate What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i never dreamed i would be so busy so soon in the new year but i am loving it and feeling so very gracious and fortunate What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.44it/s]
--- Text 1926 --- Text: 'i am still feeling a tad strange in those pearly whites' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i am still feeling a tad strange in those pearly whites What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am still feeling a tad strange in those pearly whites What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.16it/s]
--- Text 1927 --- Text: 'i feel so pathetic and useless being unable to do anything' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel so pathetic and useless being unable to do anything What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so pathetic and useless being unable to do anything What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.51it/s] 50%|█████ | 5/10 [00:00<00:00, 12.62it/s]
--- Text 1928 --- Text: 'ive been doing hour weeks and ill get paid for the extra time but i am starting to feel a bit abused they are putting a lot of pressure on me to look after both kids and do all of the cooking and cleaning' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: ive been doing hour weeks and ill get paid for the extra time but i am starting to feel a bit abused they are putting a lot of pressure on me to look after both kids and do all of the cooking and cleaning What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: ive been doing hour weeks and ill get paid for the extra time but i am starting to feel a bit abused they are putting a lot of pressure on me to look after both kids and do all of the cooking and cleaning What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 8.66it/s]
--- Text 1929 --- Text: 'i feel inside cause life is like a game sometimes but then you came around me the walls just disappeared nothing to surround me and keep me from my fears im unprotected see how ive opened up youve made me trust' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel inside cause life is like a game sometimes but then you came around me the walls just disappeared nothing to surround me and keep me from my fears im unprotected see how ive opened up youve made me trust What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel inside cause life is like a game sometimes but then you came around me the walls just disappeared nothing to surround me and keep me from my fears im unprotected see how ive opened up youve made me trust What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.07it/s]
--- Text 1930 --- Text: 'i was feeling distracted yesterday' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i was feeling distracted yesterday What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was feeling distracted yesterday What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: distracted Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.42it/s]
--- Text 1931 --- Text: 'i feel so needy latley' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel so needy latley What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so needy latley What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Neediness is a common feeling that Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.54it/s]
--- Text 1932 --- Text: 'i feel reassured by their behavior on this matter and will definitely continue to do business with them' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel reassured by their behavior on this matter and will definitely continue to do business with them What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel reassured by their behavior on this matter and will definitely continue to do business with them What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Reassurance Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.42it/s]
--- Text 1933 --- Text: 'i was feeling a bit jaded that day but told myself why the hell not' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i was feeling a bit jaded that day but told myself why the hell not What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was feeling a bit jaded that day but told myself why the hell not What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.10it/s]
--- Text 1934 --- Text: 'i feel bouncy and i could easily run out there few hours' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel bouncy and i could easily run out there few hours What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel bouncy and i could easily run out there few hours What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: bouncy Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.10it/s]
--- Text 1935 --- Text: 'i dont really care and i dont feel proud of myself at all' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i dont really care and i dont feel proud of myself at all What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i dont really care and i dont feel proud of myself at all What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.01it/s]
--- Text 1936 --- Text: 'ive started feeling like almost nothing is worth getting agitated about' True Emotion: fear --- Zero-Shot Prompting --- Prompt: ive started feeling like almost nothing is worth getting agitated about What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: ive started feeling like almost nothing is worth getting agitated about What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: NONE OF THE ABOVE Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.52it/s] 30%|███ | 3/10 [00:00<00:00, 11.44it/s]
--- Text 1937 --- Text: 'im polyamorous something im starting to feel truly accepted for being' True Emotion: love --- Zero-Shot Prompting --- Prompt: im polyamorous something im starting to feel truly accepted for being What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: im polyamorous something im starting to feel truly accepted for being What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.75it/s] 50%|█████ | 5/10 [00:00<00:00, 13.15it/s]
--- Text 1938 --- Text: 'i feel like my room is messy if theyre open' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel like my room is messy if theyre open What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel like my room is messy if theyre open What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.95it/s] 80%|████████ | 8/10 [00:00<00:00, 15.23it/s]
--- Text 1939 --- Text: 'i feel rebellious i wish i could do things legally i cant smoke drink or drive' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel rebellious i wish i could do things legally i cant smoke drink or drive What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i feel rebellious i wish i could do things legally i cant smoke drink or drive What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I feel rebellious. Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.90it/s] 50%|█████ | 5/10 [00:00<00:00, 12.65it/s]
--- Text 1940 --- Text: 'i don t know what to feel as in i am not sure should i feel sad cause it is ending or should i feel glad that it is over and i can move on' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i don t know what to feel as in i am not sure should i feel sad cause it is ending or should i feel glad that it is over and i can move on What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i don t know what to feel as in i am not sure should i feel sad cause it is ending or should i feel glad that it is over and i can move on What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.48it/s] 50%|█████ | 5/10 [00:00<00:00, 13.30it/s]
--- Text 1941 --- Text: 'i feel so discontent so guilty so pathetic so lonley and i hate myself for it' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel so discontent so guilty so pathetic so lonley and i hate myself for it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel so discontent so guilty so pathetic so lonley and i hate myself for it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.37it/s]
--- Text 1942 --- Text: 'i do not and they see that nice words keep a heart feeling wonderful' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i do not and they see that nice words keep a heart feeling wonderful What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i do not and they see that nice words keep a heart feeling wonderful What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.93it/s]
--- Text 1943 --- Text: 'i didn t feel intimidated or overwhelmed with information though' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i didn t feel intimidated or overwhelmed with information though What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i didn t feel intimidated or overwhelmed with information though What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I didn't feel intimid Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.54it/s] 10%|█ | 1/10 [00:00<00:01, 5.47it/s]
--- Text 1944 --- Text: 'i didn t mean to get angry with you bommie i just can t control my feelings hellip i just hated myself why i am like this the dara who can t get over with that b' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i didn t mean to get angry with you bommie i just can t control my feelings hellip i just hated myself why i am like this the dara who can t get over with that b What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i didn t mean to get angry with you bommie i just can t control my feelings hellip i just hated myself why i am like this the dara who can t get over with that b What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
100%|██████████| 10/10 [00:00<00:00, 16.61it/s] 50%|█████ | 5/10 [00:00<00:00, 11.69it/s]
--- Text 1945 --- Text: 'i got into the house feeling fairly calm the photographer is weaving his way in and out of bridesmaids doing touch ups my dad is telling a story my mom is running in and out of the house i manage to go through my list before the bridesmaids start clamoring for the dress' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i got into the house feeling fairly calm the photographer is weaving his way in and out of bridesmaids doing touch ups my dad is telling a story my mom is running in and out of the house i manage to go through my list before the bridesmaids start clamoring for the dress What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is joy. Predicted Emotion: joy --- Constraint-Based Prompting --- Prompt: i got into the house feeling fairly calm the photographer is weaving his way in and out of bridesmaids doing touch ups my dad is telling a story my mom is running in and out of the house i manage to go through my list before the bridesmaids start clamoring for the dress What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: A) Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 20%|██ | 2/10 [00:00<00:00, 9.54it/s]
--- Text 1946 --- Text: 'i feel that i could be gentle you light up my future' True Emotion: love --- Zero-Shot Prompting --- Prompt: i feel that i could be gentle you light up my future What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel that i could be gentle you light up my future What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: love. Predicted Emotion: love --------------------
100%|██████████| 10/10 [00:00<00:00, 17.22it/s] 50%|█████ | 5/10 [00:00<00:00, 13.55it/s]
--- Text 1947 --- Text: 'i feel really selfish and feel guilty when i think about hurting myself' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel really selfish and feel guilty when i think about hurting myself What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i feel really selfish and feel guilty when i think about hurting myself What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.71it/s]
--- Text 1948 --- Text: 'i feel so emotional today' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel so emotional today What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel so emotional today What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 11.72it/s]
--- Text 1949 --- Text: 'i feel foolish when i look at your facebook page and see how many friends you have they all love you so much why would someone like you want me' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel foolish when i look at your facebook page and see how many friends you have they all love you so much why would someone like you want me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel foolish when i look at your facebook page and see how many friends you have they all love you so much why would someone like you want me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.52it/s]
--- Text 1950 --- Text: 'im feeling good these days and my only complaints are that its getting harder and harder to move around and chase after stone and its getting harder and harder to find clothes that fit' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im feeling good these days and my only complaints are that its getting harder and harder to move around and chase after stone and its getting harder and harder to find clothes that fit What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling good these days and my only complaints are that its getting harder and harder to move around and chase after stone and its getting harder and harder to find clothes that fit What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.45it/s] 100%|██████████| 10/10 [00:00<00:00, 16.70it/s]
--- Text 1951 --- Text: 'ive been feeling groggy the whole day' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: ive been feeling groggy the whole day What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: ive been feeling groggy the whole day What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Groggy: feeling daz Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.91it/s]
--- Text 1952 --- Text: 'i feel gorgeous yes' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel gorgeous yes What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel gorgeous yes What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.70it/s]
--- Text 1953 --- Text: 'i am feeling a little apprehensive about the whole thing' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i am feeling a little apprehensive about the whole thing What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling a little apprehensive about the whole thing What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear Predicted Emotion: fear --------------------
100%|██████████| 10/10 [00:00<00:00, 17.10it/s] 100%|██████████| 10/10 [00:00<00:00, 17.17it/s]
--- Text 1954 --- Text: 'i feel that bassanio is sincere about wooing portia' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel that bassanio is sincere about wooing portia What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i feel that bassanio is sincere about wooing portia What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Explanation: Through Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.49it/s]
--- Text 1955 --- Text: 'i just feel so hopeless sometimes' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i just feel so hopeless sometimes What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i just feel so hopeless sometimes What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.80it/s]
--- Text 1956 --- Text: 'i was cooking my dinner feeling pretty melancholy when zane lowe gave it the first spin on his radio one show on tuesday and the song matched my mood perfectly' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i was cooking my dinner feeling pretty melancholy when zane lowe gave it the first spin on his radio one show on tuesday and the song matched my mood perfectly What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was cooking my dinner feeling pretty melancholy when zane lowe gave it the first spin on his radio one show on tuesday and the song matched my mood perfectly What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.40it/s]
--- Text 1957 --- Text: 'i was gaining weight getting a lot stronger and feeling amazing' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i was gaining weight getting a lot stronger and feeling amazing What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was gaining weight getting a lot stronger and feeling amazing What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 10.81it/s]
--- Text 1958 --- Text: 'i am feeling amazing and seeing the difference' True Emotion: surprise --- Zero-Shot Prompting --- Prompt: i am feeling amazing and seeing the difference What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am feeling amazing and seeing the difference What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.22it/s] 40%|████ | 4/10 [00:00<00:00, 12.63it/s]
--- Text 1959 --- Text: 'im feeling playful a href http' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im feeling playful a href http What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The text is feeling playful, so the Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling playful a href http What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: playfulness. Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.38it/s] 30%|███ | 3/10 [00:00<00:00, 10.45it/s]
--- Text 1960 --- Text: 'i check you when you re sleeping feel your nose and toes to be sure you aren t too hot or cold' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i check you when you re sleeping feel your nose and toes to be sure you aren t too hot or cold What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i check you when you re sleeping feel your nose and toes to be sure you aren t too hot or cold What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.00it/s] 100%|██████████| 10/10 [00:00<00:00, 16.76it/s]
--- Text 1961 --- Text: 'i can send my children to a private school and i don t have to apologize explain or feel embarrassed about this choice' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i can send my children to a private school and i don t have to apologize explain or feel embarrassed about this choice What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i can send my children to a private school and i don t have to apologize explain or feel embarrassed about this choice What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.49it/s] 40%|████ | 4/10 [00:00<00:00, 12.39it/s]
--- Text 1962 --- Text: 'i remember wanting to fit in so bad and feeling like no one liked me' True Emotion: love --- Zero-Shot Prompting --- Prompt: i remember wanting to fit in so bad and feeling like no one liked me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i remember wanting to fit in so bad and feeling like no one liked me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.45it/s]
--- Text 1963 --- Text: 'i also feel it helped the newbie bloggers connect and feel welcomed immediately' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i also feel it helped the newbie bloggers connect and feel welcomed immediately What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i also feel it helped the newbie bloggers connect and feel welcomed immediately What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.62it/s]
--- Text 1964 --- Text: 'i feel divine in more ways than one' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel divine in more ways than one What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel divine in more ways than one What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.27it/s] 40%|████ | 4/10 [00:00<00:00, 11.74it/s]
--- Text 1965 --- Text: 'i was feeling disheartened when going on dates because i didn t feel i was meeting anyone i clicked with or would consider a long term relationship with' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i was feeling disheartened when going on dates because i didn t feel i was meeting anyone i clicked with or would consider a long term relationship with What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i was feeling disheartened when going on dates because i didn t feel i was meeting anyone i clicked with or would consider a long term relationship with What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.21it/s]
--- Text 1966 --- Text: 'i am now and i still feel the aching loneliness of that quiet hospital room' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i am now and i still feel the aching loneliness of that quiet hospital room What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i am now and i still feel the aching loneliness of that quiet hospital room What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.45it/s] 40%|████ | 4/10 [00:00<00:00, 12.70it/s]
--- Text 1967 --- Text: 'i was feeling especially brave and asked me to take her engagement photos in hawaii' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i was feeling especially brave and asked me to take her engagement photos in hawaii What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i was feeling especially brave and asked me to take her engagement photos in hawaii What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.00it/s]
--- Text 1968 --- Text: 'i see how it turns out i ll talk more about it right now i m feeling proud and scared and a little sick i think that s adrenaline though' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i see how it turns out i ll talk more about it right now i m feeling proud and scared and a little sick i think that s adrenaline though What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i see how it turns out i ll talk more about it right now i m feeling proud and scared and a little sick i think that s adrenaline though What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Fear Predicted Emotion: fear --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.76it/s]
--- Text 1969 --- Text: 'im feeling so damn gloomy too' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im feeling so damn gloomy too What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling so damn gloomy too What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 30%|███ | 3/10 [00:00<00:00, 11.42it/s]
--- Text 1970 --- Text: 'i can feel the warmth of the gentle sun' True Emotion: love --- Zero-Shot Prompting --- Prompt: i can feel the warmth of the gentle sun What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i can feel the warmth of the gentle sun What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.76it/s] 50%|█████ | 5/10 [00:00<00:00, 12.80it/s]
--- Text 1971 --- Text: 'i guess as long as the table in the above is policy discussions and not working and fighting for change within the american theater which i feel im very devoted to i can get behind it though it seems slanted' True Emotion: love --- Zero-Shot Prompting --- Prompt: i guess as long as the table in the above is policy discussions and not working and fighting for change within the american theater which i feel im very devoted to i can get behind it though it seems slanted What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i guess as long as the table in the above is policy discussions and not working and fighting for change within the american theater which i feel im very devoted to i can get behind it though it seems slanted What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: B) Joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 17.46it/s] 50%|█████ | 5/10 [00:00<00:00, 13.56it/s]
--- Text 1972 --- Text: 'i was feeling more optimistic with blue skies no wind and temperatures hovering at about degrees' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i was feeling more optimistic with blue skies no wind and temperatures hovering at about degrees What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is optimism Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was feeling more optimistic with blue skies no wind and temperatures hovering at about degrees What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Optimism Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.35it/s]
--- Text 1973 --- Text: 'i also feel the need to mention that the animators at pixar sure outdid themselves this time' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i also feel the need to mention that the animators at pixar sure outdid themselves this time What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i also feel the need to mention that the animators at pixar sure outdid themselves this time What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 60%|██████ | 6/10 [00:00<00:00, 13.27it/s]
--- Text 1974 --- Text: 'i was feeling playful that day and replied with a lighthearted bit of banter unwittingly replacing her question mark with a solid check mark my voice was just right for the funny yet informational for dummies series' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i was feeling playful that day and replied with a lighthearted bit of banter unwittingly replacing her question mark with a solid check mark my voice was just right for the funny yet informational for dummies series What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was feeling playful that day and replied with a lighthearted bit of banter unwittingly replacing her question mark with a solid check mark my voice was just right for the funny yet informational for dummies series What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: 😂 Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.56it/s]
--- Text 1975 --- Text: 'i was feeling rather cranky cos i was thinking about the lack of sleep i had bah' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i was feeling rather cranky cos i was thinking about the lack of sleep i had bah What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i was feeling rather cranky cos i was thinking about the lack of sleep i had bah What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 18.58it/s] 20%|██ | 2/10 [00:00<00:00, 9.45it/s]
--- Text 1976 --- Text: 'i feel scared anxious' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel scared anxious What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i feel scared anxious What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear. Predicted Emotion: fear --------------------
100%|██████████| 10/10 [00:00<00:00, 17.35it/s] 40%|████ | 4/10 [00:00<00:00, 12.35it/s]
--- Text 1977 --- Text: 'i feel it is really valuable to contemplate on that phrase thy will be done in all of our lives' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel it is really valuable to contemplate on that phrase thy will be done in all of our lives What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is most likely Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel it is really valuable to contemplate on that phrase thy will be done in all of our lives What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
100%|██████████| 10/10 [00:00<00:00, 16.64it/s] 40%|████ | 4/10 [00:00<00:00, 11.76it/s]
--- Text 1978 --- Text: 'i spent last night on the couch feeling like i was suffering from hypothermia while the house remained at a balmy' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i spent last night on the couch feeling like i was suffering from hypothermia while the house remained at a balmy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is fear. Predicted Emotion: fear --- Constraint-Based Prompting --- Prompt: i spent last night on the couch feeling like i was suffering from hypothermia while the house remained at a balmy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.21it/s] 50%|█████ | 5/10 [00:00<00:00, 12.74it/s]
--- Text 1979 --- Text: 'i dont want to always be judgmental of particular men or scenarios that i often see in this area but with so much trafficking forced sex work and what basically amounts to slavery its hard not to feel slightly embittered and disillusioned' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i dont want to always be judgmental of particular men or scenarios that i often see in this area but with so much trafficking forced sex work and what basically amounts to slavery its hard not to feel slightly embittered and disillusioned What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i dont want to always be judgmental of particular men or scenarios that i often see in this area but with so much trafficking forced sex work and what basically amounts to slavery its hard not to feel slightly embittered and disillusioned What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 16.99it/s]
--- Text 1980 --- Text: 'i have no strong feelings for this book neither hated nor loved it' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i have no strong feelings for this book neither hated nor loved it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i have no strong feelings for this book neither hated nor loved it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I would choose the emotion "neutral Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.42it/s]
--- Text 1981 --- Text: 'i blunder through my life ignoring the pain when at all possible and feeling only that dull ache like hearing only the slightest echo of a scream far away' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i blunder through my life ignoring the pain when at all possible and feeling only that dull ache like hearing only the slightest echo of a scream far away What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i blunder through my life ignoring the pain when at all possible and feeling only that dull ache like hearing only the slightest echo of a scream far away What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.14it/s]
--- Text 1982 --- Text: 'im feeling cooped up and impatient and annoyingly bored' True Emotion: anger --- Zero-Shot Prompting --- Prompt: im feeling cooped up and impatient and annoyingly bored What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling cooped up and impatient and annoyingly bored What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Boredom Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.22it/s]
--- Text 1983 --- Text: 'im able to refine my poses and concepts without feeling rushed' True Emotion: anger --- Zero-Shot Prompting --- Prompt: im able to refine my poses and concepts without feeling rushed What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im able to refine my poses and concepts without feeling rushed What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.78it/s]
--- Text 1984 --- Text: 'im thinking well i could be a bit smaller but for health reasons and i should see a doctor more regularly because im feeling crappy' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: im thinking well i could be a bit smaller but for health reasons and i should see a doctor more regularly because im feeling crappy What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im thinking well i could be a bit smaller but for health reasons and i should see a doctor more regularly because im feeling crappy What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.67it/s]
--- Text 1985 --- Text: 'i came out of the airport that makes me feel irritable uncomfortable and even sadder' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i came out of the airport that makes me feel irritable uncomfortable and even sadder What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i came out of the airport that makes me feel irritable uncomfortable and even sadder What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.39it/s]
--- Text 1986 --- Text: 'i wasnt feeling sociable i really wasnt' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i wasnt feeling sociable i really wasnt What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i wasnt feeling sociable i really wasnt What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 17.75it/s] 20%|██ | 2/10 [00:00<00:00, 9.56it/s]
--- Text 1987 --- Text: 'im feeling scared and the rage filled im mad at me' True Emotion: fear --- Zero-Shot Prompting --- Prompt: im feeling scared and the rage filled im mad at me What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: im feeling scared and the rage filled im mad at me What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: fear. Predicted Emotion: fear --------------------
100%|██████████| 10/10 [00:00<00:00, 16.42it/s] 50%|█████ | 5/10 [00:00<00:00, 12.69it/s]
--- Text 1988 --- Text: 'i have found myself fighting back as he wakes me from my sleep time and time again feeling the hurt and sting of my own abandonment to my first love' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i have found myself fighting back as he wakes me from my sleep time and time again feeling the hurt and sting of my own abandonment to my first love What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i have found myself fighting back as he wakes me from my sleep time and time again feeling the hurt and sting of my own abandonment to my first love What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.85it/s] 40%|████ | 4/10 [00:00<00:00, 11.95it/s]
--- Text 1989 --- Text: 'i feel defeated that i have to take advil again but i suppose to get the inflammation down inside as well as outside its necessary' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i feel defeated that i have to take advil again but i suppose to get the inflammation down inside as well as outside its necessary What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is sadness Predicted Emotion: sadness --- Constraint-Based Prompting --- Prompt: i feel defeated that i have to take advil again but i suppose to get the inflammation down inside as well as outside its necessary What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
0%| | 0/10 [00:00<?, ?it/s] 100%|██████████| 10/10 [00:00<00:00, 17.31it/s]
--- Text 1990 --- Text: 'i had that kinda feeling but ignored it' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i had that kinda feeling but ignored it What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i had that kinda feeling but ignored it What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: I had that kinda feeling but ignored Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 16.51it/s] 40%|████ | 4/10 [00:00<00:00, 11.72it/s]
--- Text 1991 --- Text: 'i really feel like they were gentle reminders that while god hasnt always promised an easy road he has promised to be with us as we travel the rough ones' True Emotion: love --- Zero-Shot Prompting --- Prompt: i really feel like they were gentle reminders that while god hasnt always promised an easy road he has promised to be with us as we travel the rough ones What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is love. Predicted Emotion: love --- Constraint-Based Prompting --- Prompt: i really feel like they were gentle reminders that while god hasnt always promised an easy road he has promised to be with us as we travel the rough ones What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Love Predicted Emotion: love --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 12.59it/s]
--- Text 1992 --- Text: 'i dont blame it all to them and im not angry at them infact i feel fairly sympathetic for them' True Emotion: love --- Zero-Shot Prompting --- Prompt: i dont blame it all to them and im not angry at them infact i feel fairly sympathetic for them What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i dont blame it all to them and im not angry at them infact i feel fairly sympathetic for them What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sympathy Predicted Emotion: unknown --------------------
100%|██████████| 10/10 [00:00<00:00, 17.23it/s] 30%|███ | 3/10 [00:00<00:00, 10.16it/s]
--- Text 1993 --- Text: 'i feel tortured delilahlwl am considering i had one the other day about one of my closest friends raping and killing chicks' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i feel tortured delilahlwl am considering i had one the other day about one of my closest friends raping and killing chicks What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i feel tortured delilahlwl am considering i had one the other day about one of my closest friends raping and killing chicks What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
100%|██████████| 10/10 [00:00<00:00, 17.09it/s] 20%|██ | 2/10 [00:00<00:00, 9.54it/s]
--- Text 1994 --- Text: 'i told my fiance how i am feeling so angry and upset' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i told my fiance how i am feeling so angry and upset What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i told my fiance how i am feeling so angry and upset What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger. Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.56it/s]
--- Text 1995 --- Text: 'i can feel its suffering' True Emotion: sadness --- Zero-Shot Prompting --- Prompt: i can feel its suffering What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i can feel its suffering What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: sadness Predicted Emotion: sadness --------------------
100%|██████████| 10/10 [00:00<00:00, 16.62it/s] 20%|██ | 2/10 [00:00<00:00, 8.65it/s]
--- Text 1996 --- Text: 'i just keep feeling like someone is being unkind to me and doing me wrong and then all i can think of doing is to get back at them and the people they are close to' True Emotion: anger --- Zero-Shot Prompting --- Prompt: i just keep feeling like someone is being unkind to me and doing me wrong and then all i can think of doing is to get back at them and the people they are close to What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: The emotion of this text is anger. Predicted Emotion: anger --- Constraint-Based Prompting --- Prompt: i just keep feeling like someone is being unkind to me and doing me wrong and then all i can think of doing is to get back at them and the people they are close to What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: anger Predicted Emotion: anger --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.71it/s]
--- Text 1997 --- Text: 'im feeling a little cranky negative after this doctors appointment' True Emotion: anger --- Zero-Shot Prompting --- Prompt: im feeling a little cranky negative after this doctors appointment What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling a little cranky negative after this doctors appointment What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Negative Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.68it/s]
--- Text 1998 --- Text: 'i feel that i am useful to my people and that gives me a great feeling of achievement' True Emotion: joy --- Zero-Shot Prompting --- Prompt: i feel that i am useful to my people and that gives me a great feeling of achievement What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel that i am useful to my people and that gives me a great feeling of achievement What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Joy Predicted Emotion: joy --------------------
0%| | 0/10 [00:00<?, ?it/s] 40%|████ | 4/10 [00:00<00:00, 12.36it/s]
--- Text 1999 --- Text: 'im feeling more comfortable with derby i feel as though i can start to step out my shell' True Emotion: joy --- Zero-Shot Prompting --- Prompt: im feeling more comfortable with derby i feel as though i can start to step out my shell What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: im feeling more comfortable with derby i feel as though i can start to step out my shell What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: comfort Predicted Emotion: unknown --------------------
0%| | 0/10 [00:00<?, ?it/s] 50%|█████ | 5/10 [00:00<00:00, 13.55it/s]
--- Text 2000 --- Text: 'i feel all weird when i have to meet w people i text but like dont talk face to face w' True Emotion: fear --- Zero-Shot Prompting --- Prompt: i feel all weird when i have to meet w people i text but like dont talk face to face w What is the emotion of this text? Choose from sadness, joy, love, anger, fear, surprise. Generated Output: Predicted Emotion: unknown --- Constraint-Based Prompting --- Prompt: i feel all weird when i have to meet w people i text but like dont talk face to face w What is the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is: Generated Output: Sadness Predicted Emotion: sadness --------------------
df_constrained_prompt = pd.DataFrame(results_list)
df_constrained_prompt
| text | emotion | constrained prompt | prompt response | predicted emotion | Output status | |
|---|---|---|---|---|---|---|
| 0 | im feeling rather rotten so im not very ambiti... | sadness | im feeling rather rotten so im not very ambiti... | sadness | sadness | 1 |
| 1 | im updating my blog because i feel shitty | sadness | im updating my blog because i feel shitty\nWha... | sadness | sadness | 1 |
| 2 | i never make her separate from me because i do... | sadness | i never make her separate from me because i do... | love. | love | 0 |
| 3 | i left with my bouquet of red and yellow tulip... | joy | i left with my bouquet of red and yellow tulip... | optimism | unknown | 0 |
| 4 | i was feeling a little vain when i did this one | sadness | i was feeling a little vain when i did this on... | i was feeling a little vain when i | unknown | 0 |
| ... | ... | ... | ... | ... | ... | ... |
| 1995 | i just keep feeling like someone is being unki... | anger | i just keep feeling like someone is being unki... | anger | anger | 1 |
| 1996 | im feeling a little cranky negative after this... | anger | im feeling a little cranky negative after this... | negative | unknown | 0 |
| 1997 | i feel that i am useful to my people and that ... | joy | i feel that i am useful to my people and that ... | joy | joy | 1 |
| 1998 | im feeling more comfortable with derby i feel ... | joy | im feeling more comfortable with derby i feel ... | comfort | unknown | 0 |
| 1999 | i feel all weird when i have to meet w people ... | fear | i feel all weird when i have to meet w people ... | sadness | sadness | 0 |
2000 rows × 6 columns
df_constrained_prompt.to_csv('constrained_prompt_results_llama2.csv', index=False)
print("DataFrame saved successfully to 'constrained_prompt_results.csv'")
--------------------------------------------------------------------------- NameError Traceback (most recent call last) Cell In[10], line 2 1 # Save the DataFrame to a CSV file ----> 2 df_constrained_prompt.to_csv('constrained_prompt_results_llama2.csv', index=False) 4 print("DataFrame saved successfully to 'constrained_prompt_results.csv'") NameError: name 'df_constrained_prompt' is not defined
try:
df_constrained_prompt_loaded = pd.read_csv('constrained_prompt_results_llama2.csv')
print("DataFrame loaded successfully.")
print( df_constrained_prompt_loaded.head())
except FileNotFoundError:
print("The file 'constrained_prompt_results.csv' was not found.")
DataFrame loaded successfully.
text emotion \
0 im feeling rather rotten so im not very ambiti... sadness
1 im updating my blog because i feel shitty sadness
2 i never make her separate from me because i do... sadness
3 i left with my bouquet of red and yellow tulip... joy
4 i was feeling a little vain when i did this one sadness
constrained prompt \
0 im feeling rather rotten so im not very ambiti...
1 im updating my blog because i feel shitty\nWha...
2 i never make her separate from me because i do...
3 i left with my bouquet of red and yellow tulip...
4 i was feeling a little vain when i did this on...
prompt response predicted emotion Output status
0 sadness sadness 1
1 sadness sadness 1
2 love. love 0
3 optimism unknown 0
4 i was feeling a little vain when i unknown 0
print("\n--- Generating Performance Histogram ---")
plt.figure(figsize=(8, 6))
# The bins are set to center the bars at 0 and 1
df_constrained_prompt_loaded['Output status'].hist( align='mid', rwidth=0.8)
plt.xticks([0, 1], ['Hallucinated', 'Non hallucinated'])
plt.title('Prediction Status: Hallucinated(0) vs. Non hallucinated (1)')
plt.xlabel('Prediction Status')
plt.ylabel('Number of Instances')
plt.show()
--- Generating Performance Histogram ---
# Calculate and print the overall accuracy
true_emotions = df_constrained_prompt_loaded['emotion']
predicted_emotions = df_constrained_prompt_loaded['predicted emotion']
try:
accuracy = accuracy_score(true_emotions, predicted_emotions)
print("\n--- Overall Accuracy ---")
print(f"Accuracy: {accuracy:.2f}")
except Exception as e:
print(f"\nCould not calculate accuracy: {e}")
--- Overall Accuracy --- Accuracy: 0.39
# Create and display a confusion matrix to visualize errors
print("\n--- Generating Confusion Matrix ---")
cm = confusion_matrix(true_emotions, predicted_emotions, labels=list(set(true_emotions)))
disp = ConfusionMatrixDisplay(confusion_matrix=cm, display_labels=list(set(true_emotions)))
disp.plot(cmap=plt.cm.Blues)
plt.title('Confusion Matrix')
plt.show()
--- Generating Confusion Matrix ---
Mechanistic Interpretibility¶
hallu_df = df_constrained_prompt_loaded[df_constrained_prompt_loaded['Output status'] == 0].copy()
non_hallu_df = df_constrained_prompt_loaded[df_constrained_prompt_loaded['Output status'] == 1].copy()
hallu_df
| text | emotion | constrained prompt | prompt response | predicted emotion | Output status | |
|---|---|---|---|---|---|---|
| 2 | i never make her separate from me because i do... | sadness | i never make her separate from me because i do... | love. | love | 0 |
| 3 | i left with my bouquet of red and yellow tulip... | joy | i left with my bouquet of red and yellow tulip... | optimism | unknown | 0 |
| 4 | i was feeling a little vain when i did this one | sadness | i was feeling a little vain when i did this on... | i was feeling a little vain when i | unknown | 0 |
| 5 | i cant walk into a shop anywhere where i do no... | fear | i cant walk into a shop anywhere where i do no... | i cant walk into a shop anywhere where | unknown | 0 |
| 7 | i explain why i clung to a relationship with a... | joy | i explain why i clung to a relationship with a... | love.\n\nthe text explains why the speaker | love | 0 |
| ... | ... | ... | ... | ... | ... | ... |
| 1989 | i had that kinda feeling but ignored it | sadness | i had that kinda feeling but ignored it\nWhat ... | i had that kinda feeling but ignored | unknown | 0 |
| 1991 | i dont blame it all to them and im not angry a... | love | i dont blame it all to them and im not angry a... | sympathy | unknown | 0 |
| 1996 | im feeling a little cranky negative after this... | anger | im feeling a little cranky negative after this... | negative | unknown | 0 |
| 1998 | im feeling more comfortable with derby i feel ... | joy | im feeling more comfortable with derby i feel ... | comfort | unknown | 0 |
| 1999 | i feel all weird when i have to meet w people ... | fear | i feel all weird when i have to meet w people ... | sadness | sadness | 0 |
1216 rows × 6 columns
hallucination_patterns = hallu_df.groupby(['emotion', 'predicted emotion']).size().reset_index(name='count')
hallucination_patterns = hallucination_patterns.sort_values(by='count', ascending=False)
hallucination_patterns
| emotion | predicted emotion | count | |
|---|---|---|---|
| 17 | joy | unknown | 220 |
| 29 | sadness | unknown | 147 |
| 15 | joy | sadness | 114 |
| 5 | anger | unknown | 109 |
| 11 | fear | unknown | 81 |
| 14 | joy | love | 66 |
| 3 | anger | sadness | 65 |
| 9 | fear | sadness | 53 |
| 21 | love | sadness | 44 |
| 26 | sadness | joy | 40 |
| 20 | love | joy | 38 |
| 23 | love | unknown | 27 |
| 1 | anger | joy | 26 |
| 33 | surprise | unknown | 23 |
| 27 | sadness | love | 21 |
| 32 | surprise | sadness | 15 |
| 25 | sadness | fear | 14 |
| 7 | fear | joy | 14 |
| 30 | surprise | joy | 12 |
| 13 | joy | fear | 11 |
| 24 | sadness | anger | 10 |
| 0 | anger | fear | 9 |
| 10 | fear | surprise | 9 |
| 2 | anger | love | 9 |
| 6 | fear | anger | 8 |
| 16 | joy | surprise | 7 |
| 8 | fear | love | 6 |
| 12 | joy | anger | 6 |
| 4 | anger | surprise | 3 |
| 31 | surprise | love | 3 |
| 18 | love | anger | 2 |
| 28 | sadness | surprise | 2 |
| 22 | love | surprise | 1 |
| 19 | love | fear | 1 |
Joy Hallucinations (True Emotion: Joy)¶
joy-sadness: hallu_set1_df
joy-love: hallu_set2_df
joy-fear: hallu_set3_df
joy-surprise: hallu_set4_df
joy-anger: hallu_set5_df
Anger Hallucinations (True Emotion: Anger)¶
anger-sadness: hallu_set6_df
anger-joy: hallu_set7_df
anger-fear: hallu_set8_df
anger-love: hallu_set9_df
anger-surprise: hallu_set10_df
Sadness Hallucinations (True Emotion: Sadness)¶
sadness-fear: hallu_set11_df
sadness-love: hallu_set12_df
sadness-surprise: hallu_set13_df
sadness-joy: hallu_set14_df
sadness-anger: hallu_set15_df
Fear Hallucinations (True Emotion: Fear)¶
fear-sadness: hallu_set16_df
fear-love: hallu_set17_df
fear-anger: hallu_set18_df
fear-surprise: hallu_set19_df
fear-joy: hallu_set20_df
hallu_set1_df = hallu_df[(hallu_df['emotion'] == 'joy') & (hallu_df['predicted emotion'] == 'sadness')]
hallu_set2_df = hallu_df[(hallu_df['emotion'] == 'joy') & (hallu_df['predicted emotion'] == 'love')]
hallu_set3_df = hallu_df[(hallu_df['emotion'] == 'joy') & (hallu_df['predicted emotion'] == 'fear')]
hallu_set4_df = hallu_df[(hallu_df['emotion'] == 'joy') & (hallu_df['predicted emotion'] == 'surprise')]
hallu_set5_df = hallu_df[(hallu_df['emotion'] == 'joy') & (hallu_df['predicted emotion'] == 'anger')]
hallu_set6_df = hallu_df[(hallu_df['emotion'] == 'anger') & (hallu_df['predicted emotion'] == 'sadness')]
hallu_set7_df = hallu_df[(hallu_df['emotion'] == 'anger') & (hallu_df['predicted emotion'] == 'joy')]
hallu_set8_df = hallu_df[(hallu_df['emotion'] == 'anger') & (hallu_df['predicted emotion'] == 'fear')]
hallu_set9_df = hallu_df[(hallu_df['emotion'] == 'anger') & (hallu_df['predicted emotion'] == 'love')]
hallu_set10_df = hallu_df[(hallu_df['emotion'] == 'anger') & (hallu_df['predicted emotion'] == 'surprise')]
hallu_set11_df = hallu_df[(hallu_df['emotion'] == 'sadness') & (hallu_df['predicted emotion'] == 'fear')]
hallu_set12_df = hallu_df[(hallu_df['emotion'] == 'sadness') & (hallu_df['predicted emotion'] == 'love')]
hallu_set13_df = hallu_df[(hallu_df['emotion'] == 'sadness') & (hallu_df['predicted emotion'] == 'surprise')]
hallu_set14_df = hallu_df[(hallu_df['emotion'] == 'sadness') & (hallu_df['predicted emotion'] == 'joy')]
hallu_set15_df = hallu_df[(hallu_df['emotion'] == 'sadness') & (hallu_df['predicted emotion'] == 'anger')]
hallu_set16_df = hallu_df[(hallu_df['emotion'] == 'fear') & (hallu_df['predicted emotion'] == 'sadness')]
hallu_set17_df = hallu_df[(hallu_df['emotion'] == 'fear') & (hallu_df['predicted emotion'] == 'love')]
hallu_set18_df = hallu_df[(hallu_df['emotion'] == 'fear') & (hallu_df['predicted emotion'] == 'anger')]
hallu_set19_df = hallu_df[(hallu_df['emotion'] == 'fear') & (hallu_df['predicted emotion'] == 'surprise')]
hallu_set20_df = hallu_df[(hallu_df['emotion'] == 'fear') & (hallu_df['predicted emotion'] == 'joy')]
hallu_set_unkown_df = hallu_df[(hallu_df['emotion'] == 'joy') & (hallu_df['predicted emotion'] == 'unknown')]
Generate logits and cache for all the hallu prompt samples¶
import os
from typing import List
def generate_and_save_caches(model, tokenizer, hallu_dfs: List[pd.DataFrame], save_dir: str = "cached_data"):
"""
Runs the model on all prompts and saves the original logits and caches to disk.
This is an memory-efficient method for large datasets.
Args:
model: The loaded TransformerLens model.
tokenizer: The tokenizer for the model.
hallu_dfs (List[pd.DataFrame]): A list of DataFrames, each containing hallucinating prompts.
save_dir (str): The directory where the caches will be saved.
"""
if not os.path.exists(save_dir):
os.makedirs(save_dir)
all_prompts_df = pd.concat(hallu_dfs, ignore_index=True)
for index, row in all_prompts_df.iterrows():
prompt = row['constrained prompt']
cache_filepath = os.path.join(save_dir, f"cache_{index}.pt")
logits_filepath = os.path.join(save_dir, f"logits_{index}.pt")
if os.path.exists(cache_filepath) and os.path.exists(logits_filepath):
print(f"Skipping index {index}, files already exist.")
continue
print(f"Processing prompt {index}...")
with torch.no_grad():
try:
logits, cache = model.run_with_cache(prompt)
torch.save(logits, logits_filepath)
torch.save(cache, cache_filepath)
del logits, cache
torch.cuda.empty_cache()
except RuntimeError as e:
if "CUDA out of memory" in str(e):
print(f"OutOfMemoryError for prompt: {prompt}. Skipping...")
continue
else:
raise e
print("All caches have been generated and saved.")
#all_hallu_sample_dfs = [hallu_set1_df[:5]]
generate_and_save_caches(model_llama, tokenizer, [hallu_set1_df[:20]])
Skipping index 0, files already exist. Skipping index 1, files already exist. Skipping index 2, files already exist. Skipping index 3, files already exist. Skipping index 4, files already exist. Skipping index 5, files already exist. Skipping index 6, files already exist. Skipping index 7, files already exist. Skipping index 8, files already exist. Skipping index 9, files already exist. Skipping index 10, files already exist. Skipping index 11, files already exist. Skipping index 12, files already exist. Skipping index 13, files already exist. Skipping index 14, files already exist. Skipping index 15, files already exist. Skipping index 16, files already exist. Skipping index 17, files already exist. Skipping index 18, files already exist. Skipping index 19, files already exist. All caches have been generated and saved.
from typing import Dict
def load_saved_caches(save_dir: str = "cached_data") -> Dict:
loaded_data = {}
cache_files = [f for f in os.listdir(save_dir) if f.startswith('cache_') and f.endswith('.pt')]
for cache_file in cache_files:
index_str = cache_file.split('_')[1].split('.')[0]
index = int(index_str)
logits_filepath = os.path.join(save_dir, f"logits_{index}.pt")
cache_filepath = os.path.join(save_dir, cache_file)
try:
logits = torch.load(logits_filepath)
# Change this line
cache = torch.load(cache_filepath, weights_only=False)
loaded_data[index] = {'logits': logits, 'cache': cache}
except FileNotFoundError:
print(f"Warning: Missing logits file for index {index}. Skipping...")
print(f"Loaded data for {len(loaded_data)} prompts.")
return loaded_data
--------------------------------------------------------------------------- OutOfMemoryError Traceback (most recent call last) Cell In[31], line 1 ----> 1 loaded_data = load_saved_caches() 2 # Access the data for prompt at index 4 like this: 3 #original_cache = loaded_data[4]['cache'] 4 #original_logits = loaded_data[4]['logits'] Cell In[30], line 18, in load_saved_caches(save_dir) 15 logits = torch.load(logits_filepath) 17 # Change this line ---> 18 cache = torch.load(cache_filepath, weights_only=False) 20 loaded_data[index] = {'logits': logits, 'cache': cache} 21 except FileNotFoundError: File ~/.local/lib/python3.10/site-packages/torch/serialization.py:1530, in load(f, map_location, pickle_module, weights_only, mmap, **pickle_load_args) 1528 except pickle.UnpicklingError as e: 1529 raise pickle.UnpicklingError(_get_wo_message(str(e))) from None -> 1530 return _load( 1531 opened_zipfile, 1532 map_location, 1533 pickle_module, 1534 overall_storage=overall_storage, 1535 **pickle_load_args, 1536 ) 1537 if mmap: 1538 f_name = "" if not isinstance(f, str) else f"{f}, " File ~/.local/lib/python3.10/site-packages/torch/serialization.py:2119, in _load(zip_file, map_location, pickle_module, pickle_file, overall_storage, **pickle_load_args) 2117 global _serialization_tls 2118 _serialization_tls.map_location = map_location -> 2119 result = unpickler.load() 2120 _serialization_tls.map_location = None 2122 torch._utils._validate_loaded_sparse_tensors() File ~/.local/lib/python3.10/site-packages/torch/serialization.py:2083, in _load.<locals>.persistent_load(saved_id) 2081 else: 2082 nbytes = numel * torch._utils._element_size(dtype) -> 2083 typed_storage = load_tensor( 2084 dtype, nbytes, key, _maybe_decode_ascii(location) 2085 ) 2087 return typed_storage File ~/.local/lib/python3.10/site-packages/torch/serialization.py:2049, in _load.<locals>.load_tensor(dtype, numel, key, location) 2045 # TODO: Once we decide to break serialization FC, we can 2046 # stop wrapping with TypedStorage 2048 if torch._guards.detect_fake_mode(None) is None: -> 2049 wrap_storage = restore_location(storage, location) 2050 else: 2051 storage._fake_device = location File ~/.local/lib/python3.10/site-packages/torch/serialization.py:698, in default_restore_location(storage, location) 678 """ 679 Restores `storage` using a deserializer function registered for the `location`. 680 (...) 695 all matching ones return `None`. 696 """ 697 for _, _, fn in _package_registry: --> 698 result = fn(storage, location) 699 if result is not None: 700 return result File ~/.local/lib/python3.10/site-packages/torch/serialization.py:637, in _deserialize(backend_name, obj, location) 635 if location.startswith(backend_name): 636 device = _validate_device(location, backend_name) --> 637 return obj.to(device=device) File ~/.local/lib/python3.10/site-packages/torch/storage.py:291, in _StorageBase.to(self, device, non_blocking) 289 if not isinstance(device, torch.device): 290 device = torch.device(device) --> 291 return _to(self, device, non_blocking) File ~/.local/lib/python3.10/site-packages/torch/_utils.py:101, in _to(self, device, non_blocking) 97 else: 98 assert not self.is_sparse, ( 99 f"sparse storage is not supported for {device.type.upper()} tensors" 100 ) --> 101 untyped_storage = torch.UntypedStorage(self.size(), device=device) 102 untyped_storage.copy_(self, non_blocking) 103 return untyped_storage OutOfMemoryError: CUDA out of memory. Tried to allocate 172.00 MiB. GPU 0 has a total capacity of 39.39 GiB of which 83.06 MiB is free. Including non-PyTorch memory, this process has 39.30 GiB memory in use. Of the allocated memory 38.80 GiB is allocated by PyTorch, and 24.88 MiB is reserved by PyTorch but unallocated. If reserved but unallocated memory is large try setting PYTORCH_CUDA_ALLOC_CONF=expandable_segments:True to avoid fragmentation. See documentation for Memory Management (https://pytorch.org/docs/stable/notes/cuda.html#environment-variables)
# Run the model on the text and save all the layer activations to a cache.
text_to_analyze = hallu_df['text'].iloc[0]
# run_with_cache returns the final logits and a cache object.
with torch.no_grad():
logits, cache = model_llama.run_with_cache(text_to_analyze)
print("\n--- Inspecting Activations (Cache) ---")
for i in range(model_llama.cfg.n_layers):
attention_out = cache["pattern", i]
print(f"Layer {i} Attention Output Shape: {attention_out.shape}") # The shape is (batch, position, head, head_size
--- Inspecting Activations (Cache) --- Layer 0 Attention Output Shape: torch.Size([1, 32, 24, 24]) Layer 1 Attention Output Shape: torch.Size([1, 32, 24, 24]) Layer 2 Attention Output Shape: torch.Size([1, 32, 24, 24]) Layer 3 Attention Output Shape: torch.Size([1, 32, 24, 24]) Layer 4 Attention Output Shape: torch.Size([1, 32, 24, 24]) Layer 5 Attention Output Shape: torch.Size([1, 32, 24, 24]) Layer 6 Attention Output Shape: torch.Size([1, 32, 24, 24]) Layer 7 Attention Output Shape: torch.Size([1, 32, 24, 24]) Layer 8 Attention Output Shape: torch.Size([1, 32, 24, 24]) Layer 9 Attention Output Shape: torch.Size([1, 32, 24, 24]) Layer 10 Attention Output Shape: torch.Size([1, 32, 24, 24]) Layer 11 Attention Output Shape: torch.Size([1, 32, 24, 24]) Layer 12 Attention Output Shape: torch.Size([1, 32, 24, 24]) Layer 13 Attention Output Shape: torch.Size([1, 32, 24, 24]) Layer 14 Attention Output Shape: torch.Size([1, 32, 24, 24]) Layer 15 Attention Output Shape: torch.Size([1, 32, 24, 24]) Layer 16 Attention Output Shape: torch.Size([1, 32, 24, 24]) Layer 17 Attention Output Shape: torch.Size([1, 32, 24, 24]) Layer 18 Attention Output Shape: torch.Size([1, 32, 24, 24]) Layer 19 Attention Output Shape: torch.Size([1, 32, 24, 24]) Layer 20 Attention Output Shape: torch.Size([1, 32, 24, 24]) Layer 21 Attention Output Shape: torch.Size([1, 32, 24, 24]) Layer 22 Attention Output Shape: torch.Size([1, 32, 24, 24]) Layer 23 Attention Output Shape: torch.Size([1, 32, 24, 24]) Layer 24 Attention Output Shape: torch.Size([1, 32, 24, 24]) Layer 25 Attention Output Shape: torch.Size([1, 32, 24, 24]) Layer 26 Attention Output Shape: torch.Size([1, 32, 24, 24]) Layer 27 Attention Output Shape: torch.Size([1, 32, 24, 24]) Layer 28 Attention Output Shape: torch.Size([1, 32, 24, 24]) Layer 29 Attention Output Shape: torch.Size([1, 32, 24, 24]) Layer 30 Attention Output Shape: torch.Size([1, 32, 24, 24]) Layer 31 Attention Output Shape: torch.Size([1, 32, 24, 24])
for i,keys in enumerate(cache.keys()):
print(i,keys)
if i==20:
break
# output of the MLP block.
layer = 1
mlp_out = cache[f'blocks.{layer}.mlp.hook_post']
print(mlp_out.shape)
print(f"Layer {layer} MLP Output Shape: {mlp_out.shape}")
print("-" * 20)
0 hook_embed 1 blocks.0.hook_resid_pre 2 blocks.0.ln1.hook_scale 3 blocks.0.ln1.hook_normalized 4 blocks.0.attn.hook_q 5 blocks.0.attn.hook_k 6 blocks.0.attn.hook_v 7 blocks.0.attn.hook_rot_q 8 blocks.0.attn.hook_rot_k 9 blocks.0.attn.hook_attn_scores 10 blocks.0.attn.hook_pattern 11 blocks.0.attn.hook_z 12 blocks.0.hook_attn_out 13 blocks.0.hook_resid_mid 14 blocks.0.ln2.hook_scale 15 blocks.0.ln2.hook_normalized 16 blocks.0.mlp.hook_pre 17 blocks.0.mlp.hook_pre_linear 18 blocks.0.mlp.hook_post 19 blocks.0.hook_mlp_out 20 blocks.0.hook_resid_post torch.Size([1, 65, 11008]) Layer 1 MLP Output Shape: torch.Size([1, 65, 11008]) --------------------
Logit Lens¶
print(hallu_df['emotion'].iloc[6])
print(hallu_df['predicted emotion'].iloc[6])
print(hallu_df['constrained prompt'].iloc[6])
anger unknown i jest i feel grumpy tired and pre menstrual which i probably am but then again its only been a week and im about as fit as a walrus on vacation for the summer What the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is:
def get_token_ids(tokenizer, text):
"""
Gets the token IDs for a text string, handling spaces.
"""
try:
encoded_with_space = tokenizer.encode(f" {text}", add_special_tokens=False)
if encoded_with_space:
return encoded_with_space
encoded_without_space = tokenizer.encode(text, add_special_tokens=False)
if encoded_without_space:
return encoded_without_space
except Exception as e:
print(f"Tokenization error for '{text}': {e}", file=sys.stderr)
raise ValueError(f"Could not find any tokens for '{text}'.")
# --- Rank Calculation Function ---
def get_rank(logits, token_ids):
"""
Calculates the rank of the given tokens in the logits tensor.
Rank is 1-based, where 1 is the highest logit score.
"""
# Sort logits in descending order and get their original indices
sorted_indices = torch.argsort(logits, descending=True)
# Find the rank of the target token(s)
ranks = []
for t in token_ids:
if t in sorted_indices:
rank = (sorted_indices == t).nonzero().item() + 1
ranks.append(rank)
else:
print(f"Token ID {t} not found in logits. Returning a high rank.", file=sys.stderr)
return len(logits) + 1
if not ranks:
return len(logits) + 1
return min(ranks)
def analyze_prompt_attention_only(model, tokenizer, prompt_df):
"""
Analyzes a DataFrame of prompts by calculating logit scores and ranks for each layer,
based on the output of the attention mechanism only.
Args:
model: The Llama 2 model loaded with Transformer Lens.
tokenizer: The tokenizer.
prompt_df : The DataFrame containing 'constrained prompt',
'emotion', and 'predicted emotion' columns.
Returns:
pd.DataFrame: A DataFrame with the average logit scores and ranks per layer.
"""
all_metrics = []
for _, row in prompt_df.iterrows():
try:
true_ids = get_token_ids(tokenizer, row['emotion'])
predicted_ids = get_token_ids(tokenizer, row['predicted emotion'])
input_ids = tokenizer.encode(row['constrained prompt'], return_tensors='pt')
final_token_idx = input_ids.shape[-1] - 1
with torch.no_grad():
logits, cache = model.run_with_cache(row['constrained prompt'])
for layer_idx in range(model.cfg.n_layers):
attn_out_contribution = cache[("attn_out", layer_idx)][0, final_token_idx, :]
attn_logits = model.unembed(attn_out_contribution)
# Sum of the logits for the true and predicted emotion tokens.
true_logit_raw = attn_logits[true_ids].sum().item()
predicted_logit_raw = attn_logits[predicted_ids].sum().item()
logit_difference = predicted_logit_raw - true_logit_raw
# rank for the true and predicted tokens
true_rank = get_rank(attn_logits, true_ids)
predicted_rank = get_rank(attn_logits, predicted_ids)
all_metrics.append({
'layer': layer_idx,
'true_logit_raw': true_logit_raw,
'predicted_logit_raw': predicted_logit_raw,
'logit_difference': logit_difference
#'true_rank': true_rank,
#'predicted_rank': predicted_rank
})
except Exception as e:
print(f"Skipping analysis for prompt: {row['constrained prompt']}\nError: {e}")
continue
if not all_metrics:
print("No metrics were generated. The prompt DataFrame might be empty or a tokenization error occurred.")
return pd.DataFrame()
all_metrics_df = pd.DataFrame(all_metrics)
average_metrics_df = all_metrics_df.groupby('layer').mean().reset_index()
return average_metrics_df
def analyze_prompt_set_mlp_only(model, tokenizer, prompt_df):
"""
Analyzes a DataFrame of prompts by calculating logit scores and ranks for each layer.
Args:
model (HookedTransformer): The Llama 2 model loaded with Transformer Lens.
tokenizer: The tokenizer.
prompt_df (pd.DataFrame): The DataFrame containing 'constrained prompt',
'emotion', and 'predicted emotion' columns.
Returns:
pd.DataFrame: A DataFrame with the average logit scores and ranks per layer.
"""
all_metrics = []
for _, row in prompt_df.iterrows():
try:
true_ids = get_token_ids(tokenizer, row['emotion'])
predicted_ids = get_token_ids(tokenizer, row['predicted emotion'])
input_ids = tokenizer.encode(row['constrained prompt'], return_tensors='pt')
final_token_idx = input_ids.shape[-1] - 1
with torch.no_grad():
logits, cache = model.run_with_cache(row['constrained prompt'])
for layer_idx in range(model.cfg.n_layers):
# output of the MLP for the last token
mlp_out_contribution = cache[("mlp_out", layer_idx)][0, final_token_idx, :]
# MLP contribution through the unembedding matrix to get logit contribution
mlp_logits = model.unembed(mlp_out_contribution)
# Sum of the logits for the true and predicted emotion tokens.
true_logit_raw = mlp_logits[true_ids].sum().item()
predicted_logit_raw = mlp_logits[predicted_ids].sum().item()
logit_difference = predicted_logit_raw - true_logit_raw
#rank for the true and predicted tokens
true_rank = get_rank(mlp_logits, true_ids)
predicted_rank = get_rank(mlp_logits, predicted_ids)
all_metrics.append({
'layer': layer_idx,
'true_logit_raw': true_logit_raw,
'predicted_logit_raw': predicted_logit_raw,
'logit_difference': logit_difference
#'true_rank': true_rank,
#'predicted_rank': predicted_rank
})
except Exception as e:
print(f"Skipping analysis for prompt: {row['constrained prompt']}\nError: {e}")
continue
if not all_metrics:
print("No metrics were generated. The prompt DataFrame might be empty or a tokenization error occurred.")
return pd.DataFrame()
all_metrics_df = pd.DataFrame(all_metrics)
average_metrics_df = all_metrics_df.groupby('layer').mean().reset_index()
return average_metrics_df
attn_avg_logit_metrics_set1 = analyze_prompt_attention_only(model_llama, model_llama.tokenizer, hallu_set1_df)
attn_avg_logit_metrics_set2 = analyze_prompt_attention_only(model_llama, model_llama.tokenizer, hallu_set2_df)
attn_avg_logit_metrics_set3 = analyze_prompt_attention_only(model_llama, model_llama.tokenizer, hallu_set3_df)
attn_avg_logit_metrics_set4 = analyze_prompt_attention_only(model_llama, model_llama.tokenizer, hallu_set4_df)
attn_avg_logit_metrics_set5 = analyze_prompt_attention_only(model_llama, model_llama.tokenizer, hallu_set5_df)
attn_avg_logit_metrics_set6 = analyze_prompt_attention_only(model_llama, model_llama.tokenizer, hallu_set6_df)
attn_avg_logit_metrics_set7 = analyze_prompt_attention_only(model_llama, model_llama.tokenizer, hallu_set7_df)
attn_avg_logit_metrics_set8 = analyze_prompt_attention_only(model_llama, model_llama.tokenizer, hallu_set8_df)
attn_avg_logit_metrics_set9 = analyze_prompt_attention_only(model_llama, model_llama.tokenizer, hallu_set9_df)
attn_avg_logit_metrics_set10 = analyze_prompt_attention_only(model_llama, model_llama.tokenizer, hallu_set10_df)
attn_avg_logit_metrics_set11 = analyze_prompt_attention_only(model_llama, model_llama.tokenizer, hallu_set11_df)
attn_avg_logit_metrics_set12 = analyze_prompt_attention_only(model_llama, model_llama.tokenizer, hallu_set12_df)
attn_avg_logit_metrics_set13 = analyze_prompt_attention_only(model_llama, model_llama.tokenizer, hallu_set13_df)
attn_avg_logit_metrics_set14 = analyze_prompt_attention_only(model_llama, model_llama.tokenizer, hallu_set14_df)
attn_avg_logit_metrics_set15 = analyze_prompt_attention_only(model_llama, model_llama.tokenizer, hallu_set15_df)
attn_avg_logit_metrics_set16 = analyze_prompt_attention_only(model_llama, model_llama.tokenizer, hallu_set16_df)
attn_avg_logit_metrics_set17 = analyze_prompt_attention_only(model_llama, model_llama.tokenizer, hallu_set17_df)
attn_avg_logit_metrics_set18 = analyze_prompt_attention_only(model_llama, model_llama.tokenizer, hallu_set18_df)
attn_avg_logit_metrics_set19 = analyze_prompt_attention_only(model_llama, model_llama.tokenizer, hallu_set19_df)
attn_avg_logit_metrics_set20 = analyze_prompt_attention_only(model_llama, model_llama.tokenizer, hallu_set20_df)
attn_avg_logit_metrics_set8
| layer | true_logit_raw | predicted_logit_raw | logit_difference | |
|---|---|---|---|---|
| 0 | 0 | 0.042862 | 0.049106 | 0.006244 |
| 1 | 1 | -0.032123 | -0.030466 | 0.001657 |
| 2 | 2 | 0.009539 | 0.022680 | 0.013142 |
| 3 | 3 | 0.039212 | 0.036289 | -0.002923 |
| 4 | 4 | 0.018332 | -0.000224 | -0.018556 |
| 5 | 5 | -0.024541 | -0.037068 | -0.012527 |
| 6 | 6 | 0.099670 | 0.104609 | 0.004939 |
| 7 | 7 | 0.047168 | 0.061052 | 0.013883 |
| 8 | 8 | -0.123419 | -0.269522 | -0.146102 |
| 9 | 9 | -0.067410 | -0.194566 | -0.127156 |
| 10 | 10 | 0.206784 | 0.177669 | -0.029115 |
| 11 | 11 | -0.071258 | -0.011496 | 0.059762 |
| 12 | 12 | 0.009501 | -0.124627 | -0.134128 |
| 13 | 13 | 0.208407 | -0.040961 | -0.249368 |
| 14 | 14 | 0.147578 | 0.105679 | -0.041900 |
| 15 | 15 | -0.208594 | -0.028600 | 0.179993 |
| 16 | 16 | 0.066571 | 0.347009 | 0.280438 |
| 17 | 17 | -0.397830 | -0.219520 | 0.178311 |
| 18 | 18 | 0.170615 | 1.107536 | 0.936920 |
| 19 | 19 | -0.071143 | -0.087341 | -0.016198 |
| 20 | 20 | 0.649218 | 0.868288 | 0.219070 |
| 21 | 21 | 0.100348 | 0.036048 | -0.064300 |
| 22 | 22 | 1.409741 | 3.419079 | 2.009338 |
| 23 | 23 | -0.061976 | -0.115207 | -0.053231 |
| 24 | 24 | 1.095231 | 0.731112 | -0.364119 |
| 25 | 25 | 0.252596 | 0.295253 | 0.042657 |
| 26 | 26 | 1.490949 | 1.023902 | -0.467046 |
| 27 | 27 | 0.613216 | 0.617208 | 0.003991 |
| 28 | 28 | 1.525975 | 2.174344 | 0.648369 |
| 29 | 29 | 1.339956 | 2.106903 | 0.766946 |
| 30 | 30 | 0.615736 | 0.734725 | 0.118989 |
| 31 | 31 | 2.926512 | 2.888888 | -0.037623 |
def analyze_prompt_set_single_mlp_only(model, tokenizer, prompt, true_emotion, predicted_emotion):
"""
Analyzes a single prompt by calculating MLP logit scores and ranks for each layer.
Args:
model : The Llama 2 model loaded with Transformer Lens.
tokenizer: The tokenizer.
prompt (str): The constrained prompt text.
true_emotion (str): The correct emotion label.
predicted_emotion (str): The model's hallucinated emotion label.
Returns:
pd.DataFrame: A DataFrame with the logit scores and ranks per layer.
"""
all_metrics = []
try:
true_ids = get_token_ids(tokenizer, true_emotion)
predicted_ids = get_token_ids(tokenizer, predicted_emotion)
input_ids = tokenizer.encode(prompt, return_tensors='pt')
final_token_idx = input_ids.shape[-1] - 1
with torch.no_grad():
logits, cache = model.run_with_cache(prompt)
for layer_idx in range(model.cfg.n_layers):
# output of the MLP for the last token
mlp_out_contribution = cache[("mlp_out", layer_idx)][0, final_token_idx, :]
# MLP contribution through the unembedding matrix
mlp_logits = model.unembed(mlp_out_contribution)
# Sum of the logits for the true and predicted emotion tokens.
true_logit_raw = mlp_logits[true_ids].sum().item()
predicted_logit_raw = mlp_logits[predicted_ids].sum().item()
logit_difference = predicted_logit_raw - true_logit_raw
#rank for the true and predicted tokens
true_rank = get_rank(mlp_logits, true_ids)
predicted_rank = get_rank(mlp_logits, predicted_ids)
all_metrics.append({
'layer': layer_idx,
'true_logit_raw': true_logit_raw,
'predicted_logit_raw': predicted_logit_raw,
'logit_difference': logit_difference
#'true_rank': true_rank,
#'predicted_rank': predicted_rank
})
except Exception as e:
print(f"Failed to analyze prompt: {prompt}\nError: {e}", file=sys.stderr)
return pd.DataFrame()
return pd.DataFrame(all_metrics)
def analyze_attention_distinction(model, tokenizer, prompt_df, distractor_count=100):
"""
Analyzes a DataFrame of prompts by computing the relative attention-extracted
attribute information, I_a^(l)(o), for each layer as described by the paper.
Args:
model : The loaded model.
tokenizer: The tokenizer.
prompt_df : The DataFrame with prompts and emotions.
distractor_count (int): The number of top tokens to use as distractors.
Returns:
pd.DataFrame: A DataFrame with the average distinction scores per layer.
"""
all_metrics = []
unembedding_matrix = model.unembed.W_U.squeeze() # Get the unembedding matrix
for _, row in prompt_df.iterrows():
try:
true_emotion_text = row['emotion']
prompt_text = row['constrained prompt']
true_ids = get_token_ids(tokenizer, true_emotion_text)
input_ids = tokenizer.encode(prompt_text, return_tensors='pt')
final_token_idx = input_ids.shape[-1] - 1
with torch.no_grad():
logits, cache = model.run_with_cache(prompt_text)
for layer_idx in range(model.cfg.n_layers):
#Use the MLP output to find top distractors
mlp_out_contribution = cache[("mlp_out", layer_idx)][0, final_token_idx, :]
mlp_logits = model.unembed(mlp_out_contribution)
#top N tokens that have high MLP-enriched information
_, top_distractor_ids = torch.topk(mlp_logits, k=distractor_count)
# the unembedding vectors for the true token and the distractors
true_unembedding_vector = unembedding_matrix[true_ids].mean(dim=0)
# the unembedding vectors for all top distractors
distractor_unembedding_vectors = unembedding_matrix[top_distractor_ids]
mean_distractor_vector = distractor_unembedding_vectors.mean(dim=0)
# the difference vector (e_o - e_bar_o')
distinction_vector = true_unembedding_vector - mean_distractor_vector
#the attention output vector (a_T)
attn_out_contribution = cache[("attn_out", layer_idx)][0, final_token_idx, :]
# (a_T * (e_o - e_bar_o'))
distinction_score = torch.dot(attn_out_contribution, distinction_vector).item()
all_metrics.append({
'layer': layer_idx,
'distinction_score': distinction_score,
})
except Exception as e:
print(f"Skipping analysis for prompt: {row['constrained prompt']}\nError: {e}", file=sys.stderr)
continue
if not all_metrics:
print("No metrics were generated. The DataFrame might be empty or an error occurred.")
return pd.DataFrame()
all_metrics_df = pd.DataFrame(all_metrics)
average_metrics_df = all_metrics_df.groupby('layer').mean().reset_index()
return average_metrics_df
def analyze_final_embed_prompt_set(model, tokenizer, prompt_df):
"""
Analyzes a DataFrame of prompts by calculating logit scores and ranks for each layer.
Args:
model : The Llama 2 model loaded with Transformer Lens.
tokenizer: The tokenizer.
prompt_df: The DataFrame containing 'constrained prompt',
'emotion', and 'predicted emotion' columns.
Returns:
pd.DataFrame: A DataFrame with the average logit scores and ranks per layer.
"""
all_metrics = []
for _, row in prompt_df.iterrows():
try:
true_ids = get_token_ids(tokenizer, row['emotion'])
predicted_ids = get_token_ids(tokenizer, row['prompt response'])
input_ids = tokenizer.encode(row['constrained prompt'], return_tensors='pt')
final_token_idx = input_ids.shape[-1] - 1
with torch.no_grad():
logits, cache = model.run_with_cache(row['constrained prompt'])
for layer_idx in range(model.cfg.n_layers):
#logit lens:
current_residual_stream = cache[("resid_post", layer_idx)]
layer_logits = model.ln_final(current_residual_stream)
layer_logits = model.unembed(layer_logits)
layer_logits_final_token = layer_logits[0, final_token_idx, :]
# Sum of the logits for the true and predicted emotion tokens.
true_logit_raw = layer_logits_final_token[true_ids].sum().item()
predicted_logit_raw = layer_logits_final_token[predicted_ids].sum().item()
logit_difference = predicted_logit_raw - true_logit_raw
#the rank for the true and predicted tokens
true_rank = get_rank(layer_logits_final_token, true_ids)
predicted_rank = get_rank(layer_logits_final_token, predicted_ids)
all_metrics.append({
'layer': layer_idx,
'true_logit_raw': true_logit_raw,
'predicted_logit_raw': predicted_logit_raw,
'logit_difference': logit_difference
})
except Exception as e:
print(f"Skipping analysis for prompt: {row['constrained prompt']}\nError: {e}")
continue
if not all_metrics:
print("No metrics were generated. The prompt DataFrame might be empty or a tokenization error occurred.")
return pd.DataFrame()
all_metrics_df = pd.DataFrame(all_metrics)
average_metrics_df = all_metrics_df.groupby('layer').mean().reset_index()
return all_metrics_df, average_metrics_df
avg_logit_metrics_set1 = analyze_prompt_set_mlp_only(model_llama, model_llama.tokenizer, hallu_set1_df)
avg_logit_metrics_set2 = analyze_prompt_set_mlp_only(model_llama, model_llama.tokenizer, hallu_set2_df)
avg_logit_metrics_set3 = analyze_prompt_set_mlp_only(model_llama, model_llama.tokenizer, hallu_set3_df)
avg_logit_metrics_set4 = analyze_prompt_set_mlp_only(model_llama, model_llama.tokenizer, hallu_set4_df)
avg_logit_metrics_set5 = analyze_prompt_set_mlp_only(model_llama, model_llama.tokenizer, hallu_set5_df)
avg_logit_metrics_set6 = analyze_prompt_set_mlp_only(model_llama, model_llama.tokenizer, hallu_set6_df)
avg_logit_metrics_set7 = analyze_prompt_set_mlp_only(model_llama, model_llama.tokenizer, hallu_set7_df)
avg_logit_metrics_set8 = analyze_prompt_set_mlp_only(model_llama, model_llama.tokenizer, hallu_set8_df)
avg_logit_metrics_set9 = analyze_prompt_set_mlp_only(model_llama, model_llama.tokenizer, hallu_set9_df)
avg_logit_metrics_set10 = analyze_prompt_set_mlp_only(model_llama, model_llama.tokenizer, hallu_set10_df)
avg_logit_metrics_set11 = analyze_prompt_set_mlp_only(model_llama, model_llama.tokenizer, hallu_set11_df)
avg_logit_metrics_set12 = analyze_prompt_set_mlp_only(model_llama, model_llama.tokenizer, hallu_set12_df)
avg_logit_metrics_set13 = analyze_prompt_set_mlp_only(model_llama, model_llama.tokenizer, hallu_set13_df)
avg_logit_metrics_set14 = analyze_prompt_set_mlp_only(model_llama, model_llama.tokenizer, hallu_set14_df)
avg_logit_metrics_set15 = analyze_prompt_set_mlp_only(model_llama, model_llama.tokenizer, hallu_set15_df)
avg_logit_metrics_set16 = analyze_prompt_set_mlp_only(model_llama, model_llama.tokenizer, hallu_set16_df)
avg_logit_metrics_set17 = analyze_prompt_set_mlp_only(model_llama, model_llama.tokenizer, hallu_set17_df)
avg_logit_metrics_set18 = analyze_prompt_set_mlp_only(model_llama, model_llama.tokenizer, hallu_set18_df)
avg_logit_metrics_set19 = analyze_prompt_set_mlp_only(model_llama, model_llama.tokenizer, hallu_set19_df)
avg_logit_metrics_set20 = analyze_prompt_set_mlp_only(model_llama, model_llama.tokenizer, hallu_set20_df)
avg_logit_metrics_set_unknown = analyze_prompt_set_mlp_only(model_llama, model_llama.tokenizer, hallu_set20_df)
avg_logit_metrics_set1
| layer | true_logit_raw | predicted_logit_raw | logit_difference | |
|---|---|---|---|---|
| 0 | 0 | 0.013213 | -0.013995 | -0.027208 |
| 1 | 1 | -0.011127 | -0.053295 | -0.042168 |
| 2 | 2 | 0.021379 | -0.009150 | -0.030529 |
| 3 | 3 | -0.000348 | 0.056553 | 0.056900 |
| 4 | 4 | -0.051777 | 0.002234 | 0.054011 |
| 5 | 5 | 0.022064 | -0.020254 | -0.042319 |
| 6 | 6 | -0.060282 | -0.254970 | -0.194688 |
| 7 | 7 | -0.217798 | -0.023091 | 0.194707 |
| 8 | 8 | -0.037718 | -0.180274 | -0.142557 |
| 9 | 9 | 0.131731 | -0.052067 | -0.183797 |
| 10 | 10 | 0.075860 | 0.195145 | 0.119285 |
| 11 | 11 | 0.149734 | -0.315545 | -0.465279 |
| 12 | 12 | 0.307045 | 0.323456 | 0.016410 |
| 13 | 13 | -0.278175 | -0.269717 | 0.008458 |
| 14 | 14 | 0.344058 | -0.347963 | -0.692021 |
| 15 | 15 | 0.046988 | 0.008356 | -0.038632 |
| 16 | 16 | 0.136274 | -0.206019 | -0.342292 |
| 17 | 17 | 0.156708 | 0.274397 | 0.117689 |
| 18 | 18 | -0.065126 | 0.142009 | 0.207135 |
| 19 | 19 | 0.141014 | -0.213396 | -0.354410 |
| 20 | 20 | 0.183370 | 0.008092 | -0.175278 |
| 21 | 21 | -0.142685 | -0.325537 | -0.182853 |
| 22 | 22 | -0.140620 | -0.031544 | 0.109077 |
| 23 | 23 | 0.228008 | 0.507865 | 0.279857 |
| 24 | 24 | 0.288440 | 0.104584 | -0.183855 |
| 25 | 25 | -0.115407 | -0.389410 | -0.274004 |
| 26 | 26 | 0.076005 | 0.335583 | 0.259578 |
| 27 | 27 | -0.152765 | 0.423250 | 0.576016 |
| 28 | 28 | 0.630913 | 0.273599 | -0.357314 |
| 29 | 29 | 0.710369 | 1.108987 | 0.398618 |
| 30 | 30 | 5.201483 | 5.359866 | 0.158383 |
| 31 | 31 | 5.894176 | 8.212970 | 2.318794 |
all_avg_mlp_dfs = [
avg_logit_metrics_set1, avg_logit_metrics_set2, avg_logit_metrics_set3,
avg_logit_metrics_set4, avg_logit_metrics_set5, avg_logit_metrics_set6,
avg_logit_metrics_set7, avg_logit_metrics_set8, avg_logit_metrics_set9,
avg_logit_metrics_set10, avg_logit_metrics_set11, avg_logit_metrics_set12,
avg_logit_metrics_set13, avg_logit_metrics_set14, avg_logit_metrics_set15,
avg_logit_metrics_set16, avg_logit_metrics_set17, avg_logit_metrics_set18,
avg_logit_metrics_set19, avg_logit_metrics_set20
]
hallucination_labels = [
'joy-sadness', 'joy-love', 'joy-fear', 'joy-surprise', 'joy-anger',
'anger-sadness', 'anger-joy', 'anger-fear', 'anger-love', 'anger-surprise',
'sadness-fear', 'sadness-love', 'sadness-surprise', 'sadness-joy', 'sadness-anger',
'fear-sadness', 'fear-love', 'fear-anger', 'fear-surprise', 'fear-joy',
'joy-unknown'
]
combined_avg_mlp_df = pd.DataFrame()
for df, label in zip(all_avg_mlp_dfs, hallucination_labels):
df['hallucination_type'] = label
combined_avg_mlp_df = pd.concat([combined_avg_mlp_df, df])
heatmap_mlp_data = combined_avg_mlp_df.pivot(index='hallucination_type', columns='layer', values='logit_difference')
plt.figure(figsize=(16, 10))
sns.heatmap(heatmap_mlp_data, cmap='coolwarm', center=0, annot=False, fmt=".2f",
linewidths=0.5, linecolor='gray', cbar_kws={'label': 'Average Logit Difference (y ratio)'})
plt.title('Average Hallucination Trajectories MLP', fontsize=16)
plt.xlabel('Layer Number', fontsize=14)
plt.ylabel('Hallucination Type', fontsize=14)
plt.yticks(rotation=0)
plt.tight_layout()
plt.show()
df_metrics_by_layer = pd.DataFrame(metrics_by_layer)
df_metrics_by_layer
| layer | true_logit_raw | predicted_logit_raw | logit_difference | |
|---|---|---|---|---|
| 0 | 0 | -4.017740 | -3.972081 | 0.045659 |
| 1 | 1 | -6.302462 | -3.602907 | 2.699555 |
| 2 | 2 | -3.037071 | -0.592533 | 2.444539 |
| 3 | 3 | 0.128028 | 1.154666 | 1.026638 |
| 4 | 4 | 2.252389 | 0.755388 | -1.497001 |
| 5 | 5 | 1.839278 | 1.394928 | -0.444351 |
| 6 | 6 | 0.087958 | 0.567913 | 0.479955 |
| 7 | 7 | 2.298635 | 1.576388 | -0.722247 |
| 8 | 8 | -0.308488 | -1.020296 | -0.711808 |
| 9 | 9 | -0.211918 | -0.188982 | 0.022935 |
| 10 | 10 | 3.451856 | 1.401170 | -2.050687 |
| 11 | 11 | 1.559031 | 1.226814 | -0.332217 |
| 12 | 12 | 2.805185 | 1.607053 | -1.198132 |
| 13 | 13 | 1.382388 | -0.750837 | -2.133224 |
| 14 | 14 | 1.643309 | 0.709412 | -0.933898 |
| 15 | 15 | 2.521628 | 0.511647 | -2.009981 |
| 16 | 16 | 3.311272 | 2.609924 | -0.701348 |
| 17 | 17 | 5.172476 | 5.112270 | -0.060206 |
| 18 | 18 | 5.074670 | 5.331038 | 0.256369 |
| 19 | 19 | 4.743002 | 4.864981 | 0.121979 |
| 20 | 20 | 4.905226 | 5.848854 | 0.943627 |
| 21 | 21 | 3.590213 | 6.225431 | 2.635218 |
| 22 | 22 | 3.605882 | 9.163173 | 5.557291 |
| 23 | 23 | 7.237650 | 11.230175 | 3.992525 |
| 24 | 24 | 6.110950 | 11.567355 | 5.456405 |
| 25 | 25 | 6.417862 | 13.603354 | 7.185492 |
| 26 | 26 | 6.797778 | 13.283780 | 6.486002 |
| 27 | 27 | 7.834819 | 13.930937 | 6.096118 |
| 28 | 28 | 9.633776 | 16.177731 | 6.543955 |
| 29 | 29 | 11.222052 | 19.962515 | 8.740463 |
| 30 | 30 | 17.811695 | 27.199028 | 9.387333 |
| 31 | 31 | 25.333031 | 29.637125 | 4.304094 |
df_final_embed_metrics1, df_avg_final_embed_metrics1 = analyze_final_embed_prompt_set(model_llama, tokenizer, hallu_set1_df)
df_final_embed_metrics1, df_avg_final_embed_metrics2 = analyze_final_embed_prompt_set(model_llama, tokenizer, hallu_set2_df)
df_final_embed_metrics1, df_avg_final_embed_metrics3 = analyze_final_embed_prompt_set(model_llama, tokenizer, hallu_set3_df)
df_final_embed_metrics1, df_avg_final_embed_metrics4 = analyze_final_embed_prompt_set(model_llama, tokenizer, hallu_set4_df)
df_final_embed_metrics1, df_avg_final_embed_metrics5 = analyze_final_embed_prompt_set(model_llama, tokenizer, hallu_set5_df)
df_final_embed_metrics1, df_avg_final_embed_metrics6 = analyze_final_embed_prompt_set(model_llama, tokenizer, hallu_set6_df)
df_final_embed_metrics1, df_avg_final_embed_metrics7 = analyze_final_embed_prompt_set(model_llama, tokenizer, hallu_set7_df)
df_final_embed_metrics1, df_avg_final_embed_metrics8 = analyze_final_embed_prompt_set(model_llama, tokenizer, hallu_set8_df)
df_final_embed_metrics1, df_avg_final_embed_metrics9 = analyze_final_embed_prompt_set(model_llama, tokenizer, hallu_set9_df)
df_final_embed_metrics1, df_avg_final_embed_metrics10 = analyze_final_embed_prompt_set(model_llama, tokenizer, hallu_set10_df)
df_final_embed_metrics1, df_avg_final_embed_metrics11 = analyze_final_embed_prompt_set(model_llama, tokenizer, hallu_set11_df)
df_final_embed_metrics1, df_avg_final_embed_metrics12 = analyze_final_embed_prompt_set(model_llama, tokenizer, hallu_set12_df)
df_final_embed_metrics1, df_avg_final_embed_metrics13 = analyze_final_embed_prompt_set(model_llama, tokenizer, hallu_set13_df)
df_final_embed_metrics1, df_avg_final_embed_metrics14 = analyze_final_embed_prompt_set(model_llama, tokenizer, hallu_set14_df)
df_final_embed_metrics1, df_avg_final_embed_metrics15 = analyze_final_embed_prompt_set(model_llama, tokenizer, hallu_set15_df)
df_final_embed_metrics1, df_avg_final_embed_metrics16 = analyze_final_embed_prompt_set(model_llama, tokenizer, hallu_set16_df)
df_final_embed_metrics1, df_avg_final_embed_metrics17 = analyze_final_embed_prompt_set(model_llama, tokenizer, hallu_set17_df)
df_final_embed_metrics1, df_avg_final_embed_metrics18 = analyze_final_embed_prompt_set(model_llama, tokenizer, hallu_set18_df)
df_final_embed_metrics1, df_avg_final_embed_metrics19 = analyze_final_embed_prompt_set(model_llama, tokenizer, hallu_set19_df)
df_final_embed_metrics1, df_avg_final_embed_metrics20 = analyze_final_embed_prompt_set(model_llama, tokenizer, hallu_set20_df)
df_avg_final_embed_metrics20
| layer | true_logit_raw | predicted_logit_raw | logit_difference | |
|---|---|---|---|---|
| 0 | 0 | -2.873863 | -0.758869 | 2.114994 |
| 1 | 1 | -3.704048 | -1.539252 | 2.164796 |
| 2 | 2 | 0.290379 | 0.992199 | 0.701820 |
| 3 | 3 | 0.383301 | 1.721965 | 1.338663 |
| 4 | 4 | -2.081966 | -0.300618 | 1.781348 |
| 5 | 5 | -1.767304 | 0.533669 | 2.300973 |
| 6 | 6 | -1.756042 | 0.993260 | 2.749302 |
| 7 | 7 | -2.148143 | -1.018185 | 1.129958 |
| 8 | 8 | -4.218505 | -4.284214 | -0.065709 |
| 9 | 9 | -4.650069 | -2.506237 | 2.143832 |
| 10 | 10 | -2.693636 | 0.271739 | 2.965376 |
| 11 | 11 | -1.003915 | -0.756746 | 0.247169 |
| 12 | 12 | 0.376597 | 0.198659 | -0.177937 |
| 13 | 13 | -1.451785 | -0.861481 | 0.590304 |
| 14 | 14 | -0.987878 | 0.298898 | 1.286776 |
| 15 | 15 | -0.997821 | 0.130630 | 1.128451 |
| 16 | 16 | 1.412097 | 2.016400 | 0.604303 |
| 17 | 17 | 1.415749 | 2.747323 | 1.331574 |
| 18 | 18 | 2.582456 | 2.507748 | -0.074708 |
| 19 | 19 | 2.819668 | 1.532712 | -1.286956 |
| 20 | 20 | 3.324880 | 4.520706 | 1.195826 |
| 21 | 21 | 2.936024 | 4.495245 | 1.559221 |
| 22 | 22 | 6.374737 | 6.461772 | 0.087035 |
| 23 | 23 | 5.773640 | 7.428059 | 1.654419 |
| 24 | 24 | 5.770026 | 7.885203 | 2.115177 |
| 25 | 25 | 6.610858 | 9.417770 | 2.806912 |
| 26 | 26 | 7.119132 | 9.501991 | 2.382860 |
| 27 | 27 | 7.162617 | 9.194077 | 2.031460 |
| 28 | 28 | 9.145814 | 12.437756 | 3.291941 |
| 29 | 29 | 11.291294 | 14.341504 | 3.050210 |
| 30 | 30 | 19.157683 | 25.365045 | 6.207362 |
| 31 | 31 | 27.132079 | 38.063740 | 10.931661 |
all_avg_dfs = [
df_avg_final_embed_metrics1, df_avg_final_embed_metrics2, df_avg_final_embed_metrics3,
df_avg_final_embed_metrics4, df_avg_final_embed_metrics5, df_avg_final_embed_metrics6,
df_avg_final_embed_metrics7, df_avg_final_embed_metrics8, df_avg_final_embed_metrics9,
df_avg_final_embed_metrics10, df_avg_final_embed_metrics11, df_avg_final_embed_metrics12,
df_avg_final_embed_metrics13, df_avg_final_embed_metrics14, df_avg_final_embed_metrics15,
df_avg_final_embed_metrics16, df_avg_final_embed_metrics17, df_avg_final_embed_metrics18,
df_avg_final_embed_metrics19, df_avg_final_embed_metrics20
]
hallucination_labels = [
'joy-sadness', 'joy-love', 'joy-fear', 'joy-surprise', 'joy-anger',
'anger-sadness', 'anger-joy', 'anger-fear', 'anger-love', 'anger-surprise',
'sadness-fear', 'sadness-love', 'sadness-surprise', 'sadness-joy', 'sadness-anger',
'fear-sadness', 'fear-love', 'fear-anger', 'fear-surprise', 'fear-joy',
'joy-unknown'
]
combined_df = pd.DataFrame()
for df, label in zip(all_avg_dfs, hallucination_labels):
df['hallucination_type'] = label
combined_df = pd.concat([combined_df, df])
heatmap_data = combined_df.pivot(index='hallucination_type', columns='layer', values='logit_difference')
plt.figure(figsize=(16, 10))
sns.heatmap(heatmap_data, cmap='coolwarm', center=0, annot=False, fmt=".2f",
linewidths=0.5, linecolor='gray', cbar_kws={'label': 'Average Logit Difference (y ratio)'})
plt.title('Average Hallucination Trajectories', fontsize=16)
plt.xlabel('Layer Number', fontsize=14)
plt.ylabel('Hallucination Type', fontsize=14)
plt.yticks(rotation=0)
plt.tight_layout()
plt.show()
# --- Plot: Raw Logit Scores vs. Layer ---
plt.figure(figsize=(12, 7))
plt.plot(avg_logit_metrics_set1['layer'], avg_logit_metrics_set1['true_logit_raw'], label='True Emotion Logit', marker='o', linestyle='-', color='blue')
plt.plot(avg_logit_metrics_set1['layer'],avg_logit_metrics_set1['predicted_logit_raw'], label='Predicted Emotion Logit', marker='x', linestyle='--', color='orange')
plt.title('Average Raw Logit Scores Across All Layers Set 1 Joy->Sadness', fontsize=16)
plt.xlabel('Layers', fontsize=12)
plt.ylabel('Logit Score', fontsize=12)
plt.legend(fontsize=10)
plt.grid(True, which='both', linestyle=':', linewidth=0.5)
plt.axhline(0, color='black', linewidth=0.5)
plt.show()
plt.figure(figsize=(12, 7))
plt.plot(avg_logit_metrics_set1['layer'], avg_logit_metrics_set1['logit_difference'], label='Logit Difference (Predicted - True)', marker='s', linestyle='-', color='red')
plt.title('Average Logit Difference Across Layers', fontsize=16)
plt.xlabel('Layer', fontsize=12)
plt.ylabel('Logit Difference', fontsize=12)
plt.legend(fontsize=10)
plt.grid(True, which='both', linestyle=':', linewidth=0.5)
plt.axhline(0, color='black', linestyle='--', linewidth=0.8)
plt.show()
--------------------------------------------------------------------------- NameError Traceback (most recent call last) Cell In[24], line 5 2 plt.figure(figsize=(12, 7)) 4 # Plotting the raw logit scores for both emotions ----> 5 plt.plot(avg_logit_metrics_set1['layer'], avg_logit_metrics_set1['true_logit_raw'], label='True Emotion Logit', marker='o', linestyle='-', color='blue') 6 plt.plot(avg_logit_metrics_set1['layer'],avg_logit_metrics_set1['predicted_logit_raw'], label='Predicted Emotion Logit', marker='x', linestyle='--', color='orange') 8 # Adding titles, labels, and a legend NameError: name 'avg_logit_metrics_set1' is not defined
<Figure size 1200x700 with 0 Axes>
# --- Plot: Raw Logit Scores vs. Layer ---
plt.figure(figsize=(12, 7))
plt.plot(avg_logit_metrics_set2['layer'], avg_logit_metrics_set2['true_logit_raw'], label='True Emotion Logit', marker='o', linestyle='-', color='blue')
plt.plot(avg_logit_metrics_set2['layer'],avg_logit_metrics_set2['predicted_logit_raw'], label='Predicted Emotion Logit', marker='x', linestyle='--', color='orange')
plt.title('Average Raw Logit Scores Across All Layers Set 2', fontsize=16)
plt.xlabel('Layers', fontsize=12)
plt.ylabel('Logit Score', fontsize=12)
plt.legend(fontsize=10)
plt.grid(True, which='both', linestyle=':', linewidth=0.5)
plt.axhline(0, color='black', linewidth=0.5)
plt.show()
plt.figure(figsize=(12, 7))
plt.plot(avg_logit_metrics_set2['layer'], avg_logit_metrics_set2['logit_difference'], label='Logit Difference (Predicted - True)', marker='s', linestyle='-', color='red')
plt.title('Average Logit Difference Across Layers', fontsize=16)
plt.xlabel('Layer', fontsize=12)
plt.ylabel('Logit Difference', fontsize=12)
plt.legend(fontsize=10)
plt.grid(True, which='both', linestyle=':', linewidth=0.5)
plt.axhline(0, color='black', linestyle='--', linewidth=0.8)
plt.show()
plt.figure(figsize=(12, 7))
plt.plot(avg_logit_metrics_set1['layer'], avg_logit_metrics_set3['true_logit_raw'], label='True Emotion Logit', marker='o', linestyle='-', color='blue')
plt.plot(avg_logit_metrics_set1['layer'],avg_logit_metrics_set3['predicted_logit_raw'], label='Predicted Emotion Logit', marker='x', linestyle='--', color='orange')
plt.title('Average Raw Logit Scores Across All Layers Set 1 Joy->Fear', fontsize=16)
plt.xlabel('Layers', fontsize=12)
plt.ylabel('Logit Score', fontsize=12)
plt.legend(fontsize=10)
plt.grid(True, which='both', linestyle=':', linewidth=0.5)
plt.axhline(0, color='black', linewidth=0.5)
plt.show()
plt.figure(figsize=(12, 7))
plt.plot(avg_logit_metrics_set1['layer'], avg_logit_metrics_set1['logit_difference'], label='Logit Difference (Predicted - True)', marker='s', linestyle='-', color='red')
plt.title('Average Logit Difference Across Layers', fontsize=16)
plt.xlabel('Layer', fontsize=12)
plt.ylabel('Logit Difference', fontsize=12)
plt.legend(fontsize=10)
plt.grid(True, which='both', linestyle=':', linewidth=0.5)
plt.axhline(0, color='black', linestyle='--', linewidth=0.8)
plt.show()
def calculate_prompt_ranks(model, tokenizer, prompt_df):
"""
Analyzes a DataFrame of prompts by calculating the minimum rank for
each prompt across all layers.
"""
categorized_prompts = []
for index, row in prompt_df.iterrows():
try:
true_emotion_text = row['emotion']
prompt_text = row['constrained prompt']
# token IDs for the true emotion
true_ids = get_token_ids(tokenizer, true_emotion_text)
input_ids = tokenizer.encode(prompt_text, return_tensors='pt')
final_token_idx = input_ids.shape[-1] - 1
with torch.no_grad():
logits, cache = model.run_with_cache(prompt_text)
min_true_rank_across_layers = float('inf')
min_rank_layer_idx = -1
for layer_idx in range(model.cfg.n_layers):
# output of the MLP for the last token
mlp_out_contribution = cache[("mlp_out", layer_idx)][0, final_token_idx, :]
# MLP contribution through the unembedding matrix
mlp_logits = model.unembed(mlp_out_contribution)
# the rank for the true token
true_rank = get_rank(mlp_logits, true_ids)
# Update the minimum rank and the layer index
if true_rank < min_true_rank_across_layers:
min_true_rank_across_layers = true_rank
min_rank_layer_idx = layer_idx
categorized_prompts.append({
'prompt': prompt_text,
'rank last layer': true_rank,
'min_true_rank': min_true_rank_across_layers,
'min_rank_layer': min_rank_layer_idx
})
except Exception as e:
print(f"Skipping analysis for row {index}. Error: {e}", file=sys.stderr)
continue
if not categorized_prompts:
print("No prompts were categorized. The DataFrame might be empty or an error occurred.")
return pd.DataFrame()
categorized_df = pd.DataFrame(categorized_prompts)
return categorized_df
%%time
prompt_ranks_df = calculate_prompt_ranks(model_llama, tokenizer, hallu_df)
CPU times: user 3min 10s, sys: 463 ms, total: 3min 11s Wall time: 3min 14s
prompt_ranks_df
| prompt | rank last layer | min_true_rank | min_rank_layer | |
|---|---|---|---|---|
| 0 | i never make her separate from me because i do... | 3 | 1 | 28 |
| 1 | i left with my bouquet of red and yellow tulip... | 102 | 1 | 30 |
| 2 | i was feeling a little vain when i did this on... | 1 | 1 | 31 |
| 3 | i cant walk into a shop anywhere where i do no... | 1735 | 1 | 30 |
| 4 | i explain why i clung to a relationship with a... | 14 | 1 | 30 |
| ... | ... | ... | ... | ... |
| 1211 | i had that kinda feeling but ignored it\nWhat ... | 2 | 1 | 30 |
| 1212 | i dont blame it all to them and im not angry a... | 2308 | 1 | 30 |
| 1213 | im feeling a little cranky negative after this... | 29 | 2 | 30 |
| 1214 | im feeling more comfortable with derby i feel ... | 5 | 2 | 30 |
| 1215 | i feel all weird when i have to meet w people ... | 3887 | 1 | 30 |
1216 rows × 4 columns
def categorize_prompts(ranked_df, threshold_strategy="average"):
"""
Calculates the median of 'min_true_rank' as a threshold and
categorizes the type of hallucination for each prompt.
Args:
ranked_df (pd.DataFrame): DataFrame containing prompt analysis with
'min_true_rank' and other rank columns.
Returns:
pd.DataFrame: The original DataFrame with two new columns:
'threshold' and 'hallucination type'.
"""
if ranked_df.empty:
print("Input DataFrame is empty. Cannot categorize prompts.", file=sys.stderr)
return ranked_df
# Calculate the median of the 'min_true_rank' column to use as the threshold
try:
knowledge_threshold = np.median(ranked_df['min_true_rank'])
except KeyError as e:
print(f"DataFrame is missing the required column: {e}", file=sys.stderr)
return ranked_df
# Add the threshold as a new column for visibility
ranked_df['threshold'] = knowledge_threshold
# Define a function to assign the hallucination type
def assign_category(min_rank):
if min_rank <= knowledge_threshold:
return "Extraction"
else:
return "Enrichment"
# Apply the categorization function to create the new column
ranked_df['hallucination type'] = ranked_df['min_true_rank'].apply(assign_category)
if 'hallucination_type' in ranked_df.columns:
ranked_df = ranked_df.drop(columns=['hallucination_type'])
return ranked_df
categorized_hallu = categorize_prompts(prompt_ranks_df, threshold_strategy="median")
categorized_hallu#[categorized_hallu['hallucination type']=='Extraction'].count()
| prompt | rank last layer | min_true_rank | min_rank_layer | threshold | hallucination type | |
|---|---|---|---|---|---|---|
| 0 | i never make her separate from me because i do... | 3 | 1 | 28 | 1.0 | Extraction |
| 1 | i left with my bouquet of red and yellow tulip... | 102 | 1 | 30 | 1.0 | Extraction |
| 2 | i was feeling a little vain when i did this on... | 1 | 1 | 31 | 1.0 | Extraction |
| 3 | i cant walk into a shop anywhere where i do no... | 1735 | 1 | 30 | 1.0 | Extraction |
| 4 | i explain why i clung to a relationship with a... | 14 | 1 | 30 | 1.0 | Extraction |
| ... | ... | ... | ... | ... | ... | ... |
| 1211 | i had that kinda feeling but ignored it\nWhat ... | 2 | 1 | 30 | 1.0 | Extraction |
| 1212 | i dont blame it all to them and im not angry a... | 2308 | 1 | 30 | 1.0 | Extraction |
| 1213 | im feeling a little cranky negative after this... | 29 | 2 | 30 | 1.0 | Enrichment |
| 1214 | im feeling more comfortable with derby i feel ... | 5 | 2 | 30 | 1.0 | Enrichment |
| 1215 | i feel all weird when i have to meet w people ... | 3887 | 1 | 30 | 1.0 | Extraction |
1216 rows × 6 columns
knowledge_threshold = 1
plt.figure(figsize=(10, 6))
plt.scatter(categorized_hallu['min_rank_layer'], categorized_hallu['min_true_rank'], alpha=0.8)
plt.yscale('log')
plt.axhline(y=knowledge_threshold, color='r', linestyle='--', label=f'Knowledge Threshold ({knowledge_threshold})')
plt.title('Minimum True Rank per Layer for Hallucinating Prompts', fontsize=16)
plt.xlabel('Layer Index (min rank)', fontsize=12)
plt.ylabel('Minimum True Rank (log scale)', fontsize=12)
plt.xticks(np.arange(0, categorized_hallu['min_rank_layer'].max() + 1, 1))
plt.grid(True, which="both", ls="--", c='0.7')
plt.legend()
plt.tight_layout()
# --- Plot : Distribution of Layers ---
plt.figure(figsize=(8, 5))
sns.histplot(data=categorized_hallu, x='min_rank_layer', kde=False, bins=20)
plt.title('Distribution of Layers with Minimum Rank')
plt.xlabel('Layer Index')
plt.ylabel('Num of Prompts')
plt.grid(axis='y', linestyle='--', alpha=0.7)
plt.tight_layout()
plt.show()
plt.figure(figsize=(8, 5))
sns.kdeplot(data=categorized_hallu, x='min_true_rank', fill=True)
plt.title('Distribution of Minimum True Ranks')
plt.xlabel('Minimum True Rank')
plt.ylabel('Density')
plt.xscale('log')
plt.grid(axis='y', linestyle='--', alpha=0.7)
plt.tight_layout()
plt.show()
def analyze_and_categorize_prompts_attention_only(model, tokenizer, prompt_df, extraction_threshold=320):
"""
Analyzes a DataFrame of prompts by calculating the minimum rank for
the true emotion using an attention-only logit lens, then categorizes
the hallucination type.
Args:
model : The loaded model.
tokenizer: The tokenizer.
prompt_df : The DataFrame with prompts and emotions.
extraction_threshold (int): The rank threshold for a successful
attention-based extraction.
Returns:
pd.DataFrame: A DataFrame with each prompt's calculated ranks
and categorized hallucination type.
"""
categorized_prompts = []
for index, row in prompt_df.iterrows():
try:
true_emotion_text = row['emotion']
prompt_text = row['constrained prompt']
#token IDs for the true emotion
true_ids = get_token_ids(tokenizer, true_emotion_text)
input_ids = tokenizer.encode(prompt_text, return_tensors='pt')
final_token_idx = input_ids.shape[-1] - 1
with torch.no_grad():
logits, cache = model.run_with_cache(prompt_text)
min_true_rank_across_layers = float('inf')
min_rank_layer_idx = -1
for layer_idx in range(model.cfg.n_layers):
attn_out_contribution = cache[("attn_out", layer_idx)][0, final_token_idx, :]
# attention contribution through the unembedding matrix
attn_logits = model.unembed(attn_out_contribution)
# rank for the true token based on the attention logits
true_rank = get_rank(attn_logits, true_ids)
# Update the minimum rank and the layer index
if true_rank < min_true_rank_across_layers:
min_true_rank_across_layers = true_rank
min_rank_layer_idx = layer_idx
if min_true_rank_across_layers < extraction_threshold:
hallucination_type = "Enrichment"
else:
hallucination_type = "Extraction"
categorized_prompts.append({
'prompt': prompt_text,
'min_true_rank': min_true_rank_across_layers,
'min_rank_layer': min_rank_layer_idx,
'hallucination_type': hallucination_type
})
except Exception as e:
print(f"Skipping analysis for row {index}. Error: {e}", file=sys.stderr)
continue
if not categorized_prompts:
print("No prompts were categorized. The DataFrame might be empty or an error occurred.")
return pd.DataFrame()
categorized_df = pd.DataFrame(categorized_prompts)
return categorized_df
attn_categorized_df = analyze_and_categorize_prompts_attention_only(model_llama, model_llama.tokenizer, hallu_df)
attn_categorized_df#['min_true_rank'].max()
| prompt | min_true_rank | min_rank_layer | hallucination_type | |
|---|---|---|---|---|
| 0 | 'i never make her separate from me because i d... | 2 | 31 | Enrichment |
| 1 | 'i left with my bouquet of red and yellow tuli... | 3 | 31 | Enrichment |
| 2 | 'i was feeling a little vain when i did this o... | 3 | 31 | Enrichment |
| 3 | 'i explain why i clung to a relationship with ... | 3 | 31 | Enrichment |
| 4 | 'i jest i feel grumpy tired and pre menstrual ... | 3 | 31 | Enrichment |
| ... | ... | ... | ... | ... |
| 1125 | 'i came out of the airport that makes me feel ... | 5 | 22 | Enrichment |
| 1126 | 'i wasnt feeling sociable i really wasnt'What ... | 8 | 31 | Enrichment |
| 1127 | 'i dont blame it all to them and im not angry ... | 1 | 22 | Enrichment |
| 1128 | 'im feeling a little cranky negative after thi... | 3 | 28 | Enrichment |
| 1129 | 'i feel all weird when i have to meet w people... | 1 | 22 | Enrichment |
1130 rows × 4 columns
plt.figure(figsize=(10, 6))
plt.plot(range(model.cfg.n_layers), ranks_across_layers, marker='o', linestyle='-')
plt.axhline(y=320, color='r', linestyle='--', label=f'Knowledge Threshold ({320)')
plt.title(f'Rank of Correct Emotion ("{true_emotion_text}") Across MLP Layers\nPrompt {index}: {prompt_text[:50]}...')
plt.xlabel('Layer Number')
plt.ylabel('Rank (1-based)')
plt.yscale('log')
plt.grid(True, which="both", linestyle='--', linewidth=0.5)
plt.legend()
avg_logit_metrics_set2['predicted_rank'].min()
1.3448275862068966
from collections import defaultdict
TARGET_SENTIMENTS = ['joy', 'sadness', 'anger', 'fear', 'surprise', 'disgust', 'love', 'amusement', 'excitement',
'happy', 'depressed', 'anxious', 'ecstatic', 'grief', 'calm', 'lonely', 'boredom',
'elation', 'hope', 'disappointment', 'confusion', 'relief']
COMMON_WORDS = [
"the", "be", "to", "of", "and", "a", "in", "that", "have", "I", "it", "for", "not", "on", "with", "as", "do",
"at", "this", "but", "by", "from", "up", "so", "what", "we", "he", "she", "they", "was", "one", "all", "can",
"an", "is", "are", "you", "go", "new", "world", "time", "day", "night", "see", "man", "woman", "house", "car",
"computer", "phone", "food", "music", "art", "book", "story", "game", "city", "country", "people", "thing",
"life", "work", "school", "money", "power", "truth", "freedom", "justice", "peace", "war", "love", "hate",
"friend", "family", "child", "adult", "animal", "plant", "water", "fire", "earth", "sky", "sun", "moon",
"star", "space", "science", "math", "history", "language", "letter", "number", "idea", "thought", "feeling",
"emotion", "mind", "body", "health", "beauty", "ugly", "good", "bad", "right", "wrong", "old", "young", "big",
"small", "high", "low", "fast", "slow", "hot", "cold", "light", "dark", "open", "close", "start", "end",
"begin", "finish", "like", "dislike", "know", "think", "feel", "want", "need", "find", "give", "take", "come",
"go", "make", "do", "say", "tell", "ask", "answer", "look", "listen", "hear", "read", "write", "talk", "walk",
"run", "jump", "fly", "swim", "eat", "drink", "sleep", "dream", "wake", "laugh", "cry", "smile", "frown",
"win", "lose", "help", "thank", "sorry", "please", "maybe", "yes", "no", "why", "where", "when", "how",
"always", "never", "often", "sometimes", "seldom", "today", "tomorrow", "yesterday"
]
FULL_VOCABULARY = sorted(list(set(TARGET_SENTIMENTS + COMMON_WORDS + [f"token_{i}" for i in range(10000)])))
VOCAB_SIZE = len(FULL_VOCABULARY)
simulated_scores = scores
print("\n--- Rho Star values for target sentiments ---")
for sentiment in TARGET_SENTIMENTS:
rho_val = rho_star(simulated_scores, sentiment)
print(f"ρ*('{sentiment}'): {rho_val:.4f}")
sorted_scores = sorted(simulated_scores.items(), key=lambda item: item[1], reverse=True)
print("\n--- Top 10 Ranked Tokens in Simulated Vocabulary ---")
for rank, (token, score) in enumerate(sorted_scores[:10]):
print(f"Rank {rank + 1}: '{token}' (Score: {score:.2f})")
--- Rho Star values for target sentiments ---
ρ*('joy'): 0.5458
ρ*('sadness'): 0.0000
ρ*('anger'): 0.1730
ρ*('fear'): 0.3610
ρ*('surprise'): 0.0984
ρ*('disgust'): 0.3780
ρ*('love'): 0.9181
ρ*('amusement'): 0.5998
ρ*('excitement'): 0.5163
ρ*('happy'): 0.7960
ρ*('depressed'): 0.8262
ρ*('anxious'): 0.1330
ρ*('ecstatic'): 0.4559
ρ*('grief'): 0.0005
ρ*('calm'): 0.9812
ρ*('lonely'): 0.5216
ρ*('boredom'): 0.2403
ρ*('elation'): 0.4761
ρ*('hope'): 0.2018
ρ*('disappointment'): 0.8944
ρ*('confusion'): 0.8123
ρ*('relief'): 0.8297
--- Top 10 Ranked Tokens in Simulated Vocabulary ---
Rank 1: 'sadness' (Score: 6.69)
Rank 2: 'token_5621' (Score: 3.88)
Rank 3: 'token_9697' (Score: 3.72)
Rank 4: 'token_2826' (Score: 3.61)
Rank 5: 'token_6937' (Score: 3.57)
Rank 6: 'grief' (Score: 3.31)
Rank 7: 'token_9329' (Score: 3.30)
Rank 8: 'token_5258' (Score: 3.30)
Rank 9: 'token_4629' (Score: 3.28)
Rank 10: 'token_358' (Score: 3.27)
Attention Heatmap¶
def get_emotion_token_ids(tokenizer, emotion_string):
"""
Gets the token IDs for an emotion string by using the robust
tokenizer.encode() method. This function handles both single and multi-token
words and is less prone to failure than the tokenizer.tokenize() method.
Args:
tokenizer : The model's tokenizer.
emotion_string (str): The emotion word to tokenize.
Returns:
list: A list of integers representing the token IDs for the emotion string.
Raises:
ValueError: If no tokens can be found for the emotion string.
"""
encoded_with_space = tokenizer.encode(f" {emotion_string}", add_special_tokens=False)
if encoded_with_space:
return encoded_with_space
encoded_without_space = tokenizer.encode(emotion_string, add_special_tokens=False)
if encoded_without_space:
return encoded_without_space
raise ValueError(f"Could not find any tokens for '{emotion_string}'.")
def run_analysis_for_single_text(model, tokenizer, prompt, true_emotion, predicted_emotion):
"""
Runs a layer-by-layer analysis for a single text and returns the results.
This function now handles multi-token emotions by summing their logits.
Args:
model : The loaded language model.
tokenizer : The model's tokenizer.
prompt (str): The full input prompt for the model.
true_emotion (str): The correct emotion label.
predicted_emotion (str): The emotion predicted by the model.
Returns:
list: A list of dictionaries, where each dictionary contains the metrics
for a single layer.
"""
try:
true_ids = get_emotion_token_ids(tokenizer, true_emotion)
predicted_ids = get_emotion_token_ids(tokenizer, predicted_emotion)
input_ids = tokenizer.to_tokens(prompt)
final_token_idx = input_ids.shape[-1] - 1
logits, cache = model.run_with_cache(input_ids)
metrics_by_layer = []
for layer_idx in range(model.cfg.n_layers + 1):
current_residual_stream = cache[f'blocks.{layer_idx-1}.hook_resid_post'] if layer_idx > 0 else cache['hook_embed']
layer_logits = model.unembed(model.ln_final(current_residual_stream))
layer_logits_final_token = layer_logits[0, final_token_idx, :]
true_logit = layer_logits_final_token[true_ids].sum().item()
predicted_logit = layer_logits_final_token[predicted_ids].sum().item()
metrics_by_layer.append({
'layer': layer_idx,
'true_logit_raw': true_logit,
'predicted_logit_raw': predicted_logit
})
except Exception as e:
print(f"Analysis failed for prompt: {prompt}\nError: {e}")
metrics_by_layer = []
return metrics_by_layer
try:
model = HookedTransformer.from_pretrained(
"meta-llama/Llama-2-7b-hf",
fold_ln=False,
center_unembed=False,
center_writing_weights=False,
)
tokenizer = model.tokenizer
if tokenizer.pad_token is None:
tokenizer.pad_token = tokenizer.eos_token
if torch.cuda.is_available():
model.to('cuda')
print("Model loaded for analysis.")
except Exception as e:
print(f"Failed to load model: {e}")
model = None
tokenizer = None
print(f"\nVisualizing Average Attention to Final Token across All Layers and Heads ---")
num_layers = model_llama.cfg.n_layers
num_heads = model_llama.cfg.n_heads
seq_len = cache["pattern", 0].shape[-1]
final_token_index = seq_len - 1
avg_attention_matrix = torch.zeros((num_heads, num_layers))
for layer in range(num_layers):
#attention pattern shape is (batch, num_heads, seq_len, seq_len)
attention_patterns = cache["pattern", layer].squeeze()
for head in range(num_heads):
attention_to_final_token = attention_patterns[head, :, final_token_index]
avg_attention = attention_to_final_token.mean()
avg_attention_matrix[head, layer] = avg_attention
plot_data = avg_attention_matrix.detach().cpu().numpy()
# Create the heatmap
plt.figure(figsize=(15, 10))
sns.heatmap(
plot_data,
cmap="viridis",
linewidths=0.5,
xticklabels=[f'L{i}' for i in range(num_layers)],
yticklabels=[f'H{i}' for i in range(num_heads)],
cbar_kws={'label': 'Average Attention to Final Token'}
)
plt.title("Attention Weights on Final Token (All Layers and Heads)")
plt.xlabel("Layer Number")
plt.ylabel("Head Number")
plt.show()
layer_number = 10
attention_pattern_all_heads = cache["pattern", layer_number].squeeze().detach().cpu().numpy()
num_heads = attention_pattern_all_heads.shape[0]
input_tokens = tokenizer.tokenize(text_to_analyze)
fig, axes = plt.subplots(
nrows=num_heads // 8,
ncols=8,
figsize=(20, 10),
constrained_layout=True
)
axes = axes.flatten()
for i in range(num_heads):
ax = axes[i]
sns.heatmap(
attention_pattern_all_heads[i],
xticklabels=input_tokens,
yticklabels=input_tokens,
cmap="viridis",
linewidths=0.2,
ax=ax,
cbar=False
)
ax.set_title(f'Head {i}')
ax.tick_params(axis='x', rotation=90)
ax.tick_params(axis='y', rotation=0)
fig.suptitle(f"Attention Heatmaps for Layer {layer_number}", fontsize=20)
fig.supxlabel("Key Tokens (Input)", fontsize=12)
fig.supylabel("Query Tokens (Output)", fontsize=12)
plt.show()
layer = 1
head = 1
attention_pattern = cache["pattern", layer]
print(attention_pattern.shape)
attention_to_plot = attention_pattern.squeeze().detach().cpu().numpy()[head]
input_tokens = tokenizer.tokenize(text_to_analyze)
print(f"\n Visualizing Attention Heatmap for Layer {layer}, Head {head} ---")
plt.figure(figsize=(10, 8))
sns.heatmap(attention_to_plot,
xticklabels=input_tokens,
yticklabels=input_tokens,
cmap="viridis",
linewidths=0.5)
plt.title(f"Attention Heatmap: Layer {layer}, Head {head}")
plt.xlabel("Key Tokens (Input)")
plt.ylabel("Query Tokens (Output)")
plt.show()
layer = 17
head = 14
attention_pattern = cache["pattern", layer]
print(attention_pattern.shape)
attention_to_plot = attention_pattern.squeeze().detach().cpu().numpy()[head]
input_tokens = tokenizer.tokenize(text_to_analyze)
print(f"\n Visualizing Attention Heatmap for Layer {layer}, Head {head} ---")
plt.figure(figsize=(10, 8))
sns.heatmap(attention_to_plot,
xticklabels=input_tokens,
yticklabels=input_tokens,
cmap="viridis",
linewidths=0.5)
plt.title(f"Attention Heatmap: Layer {layer}, Head {head}")
plt.xlabel("Key Tokens (Input)")
plt.ylabel("Query Tokens (Output)")
plt.show()
layer = 21
head = 24
attention_pattern = cache["pattern", layer]
print(attention_pattern.shape)
attention_to_plot = attention_pattern.squeeze().detach().cpu().numpy()[head]
input_tokens = tokenizer.tokenize(text_to_analyze)
print(f"\n Visualizing Attention Heatmap for Layer {layer}, Head {head} ---")
plt.figure(figsize=(10, 8))
sns.heatmap(attention_to_plot,
xticklabels=input_tokens,
yticklabels=input_tokens,
cmap="viridis",
linewidths=0.5)
plt.title(f"Attention Heatmap: Layer {layer}, Head {head}")
plt.xlabel("Key Tokens (Input)")
plt.ylabel("Query Tokens (Output)")
plt.show()
Causal Validation¶
def get_model_embedding_layer(model):
"""
Finds and returns the model's token embedding layer, handling various attribute names.
"""
if hasattr(model, 'get_input_embeddings'):
return model.get_input_embeddings
elif hasattr(model, 'embed'):
return model.embed
elif hasattr(model, 'w_e'):
return model.w_e
else:
raise AttributeError("Could not find the model's embedding layer or a valid embedding method (checked for 'get_input_embeddings', 'embed', and 'w_e').")
# --- Functions for calculating sigma and embeddings ---
def calculate_calibration_stats(model, tokenizer, prompts: List[str]) -> Tuple[float, torch.Tensor]:
"""
Calculates sigma (3 * empirical std dev) and the mean embedding of a set of prompts.
"""
all_embeddings = []
# Process each prompt to get its embedding
for prompt in prompts:
input_ids = tokenizer(prompt, return_tensors="pt").input_ids
with torch.no_grad():
if hasattr(model, 'get_input_embeddings'):
token_embeddings = model.get_input_embeddings()(input_ids)
elif hasattr(model, 'embed'):
token_embeddings = model.embed(input_ids)
else:
raise AttributeError("Could not find the model's embedding layer or a valid embedding method.")
mean_embedding = torch.mean(token_embeddings, dim=1)
all_embeddings.append(mean_embedding.squeeze())
stacked_embeddings = torch.stack(all_embeddings)
# Calculate the standard deviation and mean of all embeddings
empirical_std_dev = torch.std(stacked_embeddings, dim=0, unbiased=False)
mean_embedding = torch.mean(stacked_embeddings, dim=0)
# Calculate sigma as 3 times the mean of the std dev vector
sigma = 3 * torch.mean(empirical_std_dev).item()
return sigma, mean_embedding
calibration_prompts = hallu_df['constrained prompt'].tolist()
sigma_value, mean_embedding_vector = calculate_calibration_stats(model_llama, tokenizer, calibration_prompts)
print("Sigma:", sigma_value)
mean_embedding_vector
Sigma: 0.0028929677791893482
tensor([-1.3256e-03, 2.9094e-03, 1.5659e-05, ..., 4.5183e-04,
-1.7084e-04, 8.3932e-04], device='cuda:0')
Hypothesis on adding noises to which embedding tokens as to why the model is hallucinating.¶
2 main options, each testing a different hypothesis:
- Add Noise to the Subject Token ('i') Hypothesis: The hallucination (predicting "joy" instead of "sadness") is caused by a misinterpretation of the speaker's state. The model incorrectly represents the speaker's emotional state, which is primarily anchored to the token 'i'.
Inject noise only into the embedding of the first token, 'i', and observe if the model's prediction changes.
- Add Noise to the Key Emotional Tokens ('shame' and 'stigma') Hypothesis: The hallucination is caused by the model misinterpreting emotionally charged words in the text.
Inject noise only into the embeddings of the tokens for "shame" and "stigma."
def find_subject_token(tokenizer, prompt):
"""
Finds the first token of a prompt, assuming it represents the subject.
"""
# 1. Clean the prompt by stripping leading/trailing quotes and spaces
clean_prompt = prompt.strip(' \'"')
# 2. Use the tokenizer to get the token IDs for the cleaned prompt
input_ids = tokenizer.encode(clean_prompt, add_special_tokens=False)
# Handle empty prompts after cleaning
if not input_ids:
return ""
# 3. Get the ID of the first token
first_token_id = input_ids[0]
# 4. Decode the ID back to a string to get the token text
first_token_text = tokenizer.decode(first_token_id)
# 5. Return the first token text, stripping any leading spaces
return first_token_text.strip()
# Example usage with your provided prompt from the DataFrame
prompt_from_df = hallu_df['constrained prompt'].iloc[59]
# The function will now handle the cleaning automatically
subject_text = find_subject_token(tokenizer, prompt_from_df)
print(f"The subject token is: '{subject_text}'")
The subject token is: 'i'
hallu_df['constrained prompt'].iloc[55]
'i journaled about my tendency to sometimes overcommit myself which can make me feel exhausted and overwhelmed\nWhat the single emotion of this text? You must choose one and only one from the following list: sadness, joy, love, anger, fear, surprise. The emotion is:'
def get_perturbed_embeddings(model, tokenizer, prompt, sigma):
"""
Calculates u* by adding scaled Gaussian noise to the embedding of the
first token in the prompt, which is assumed to be the subject.
Args:
model: The loaded TransformerLens model.
tokenizer: The tokenizer for the model.
prompt (str): The original prompt text.
sigma (float): The calculated standard deviation for the noise.
Returns:
torch.Tensor: The perturbed input embeddings (u*).
"""
# 1. Cleaning the prompt by stripping leading/trailing quotes and spaces
clean_prompt = prompt.strip(' \'"')
input_ids = tokenizer.encode(clean_prompt, return_tensors='pt')
if input_ids.numel() == 0:
print("Warning: Prompt is empty after cleaning. Cannot generate embeddings.")
return None
# Getting the original embeddings from the model's embedding layer
with torch.no_grad():
original_embeddings = model.embed(input_ids)
subject_token_index = 0
# 2. Creating Gaussian noise scaled by sigma
noise = torch.randn_like(original_embeddings) * sigma
# 3. Creating a new tensor for u* by copying the original embeddings
u_star_embeddings = original_embeddings.clone()
# 4. Injecting the noise into the subject token's embedding
u_star_embeddings[0, subject_token_index, :] += noise[0, subject_token_index, :]
return u_star_embeddings
u_star = get_perturbed_embeddings(model_llama, tokenizer, hallu_df['constrained prompt'].iloc[55], sigma_value)
u_star.shape
torch.Size([1, 65, 4096])
u_star_tensors = {} # This dictionary will store all your u* tensors
# Loop through each row of your hallucination DataFrame
for index, row in hallu_set1_df.iterrows():
prompt = row['constrained prompt']
# Calculate u* for the current prompt
perturbed_embeddings = get_perturbed_embeddings(model_llama, tokenizer, prompt, sigma_value)
# Check if the embeddings were successfully generated
if perturbed_embeddings is not None:
# Store the tensor in the dictionary with the prompt's index as the key
u_star_tensors[index] = perturbed_embeddings
print(f"Stored {len(u_star_tensors)} u* tensors for analysis.")
Stored 114 u* tensors for analysis.
def perform_causal_analysis_y_prime(model, tokenizer, hallu_df, sigma_value, num_noise_samples):
"""
Performs a more memory-efficient causal analysis by optimizing
the generation of noise samples.
"""
results_df = pd.DataFrame(columns=['prompt_text', 'true_emotion', 'predicted_emotion', 'num_truth_inducing_samples', 'truthful_y_primes'])
with torch.no_grad():
for index, row in hallu_df.iterrows():
prompt_to_analyze = row['constrained prompt'].strip()
true_emotion = row['emotion']
predicted_emotion = row['predicted emotion']
truthful_y_primes = []
# 1. Running the original prompt once to get the original embeddings
_, original_cache = model.run_with_cache(prompt_to_analyze)
original_embeddings = original_cache['embed'].clone().detach()
# clearing the cache to free up memory before the noise sampling loop starts
del original_cache
torch.cuda.empty_cache()
# 2. token IDs for the true and predicted emotions once
try:
true_id = tokenizer.encode(true_emotion, add_special_tokens=False)[0]
predicted_id = tokenizer.encode(predicted_emotion, add_special_tokens=False)[0]
except IndexError:
print(f"Skipping prompt {index}: Emotion token not found.")
continue
# 3. Using a single noise tensor for all samples to minimize memory allocation
for _ in range(num_noise_samples):
# Adding noise to the original embeddings to get u*
subject_token_index = 0
noise = torch.randn_like(original_embeddings) * sigma_value
perturbed_embeddings = original_embeddings.clone()
perturbed_embeddings[0, subject_token_index, :] += noise[0, subject_token_index, :]
# Using a hook to replace the 'embed' output with the perturbed embeddings
def hook_fn_replace_embed(embed_output, hook):
return perturbed_embeddings
# Running the model with the hook
new_logits = model.run_with_hooks(
input=tokenizer.encode(prompt_to_analyze, return_tensors='pt'),
fwd_hooks=[('hook_embed', hook_fn_replace_embed)]
)
# Computing the new log-likelihood ratio (y') from the new logits
final_logits = new_logits[0, -1, :]
y_prime = final_logits[predicted_id] - final_logits[true_id]
# Filtering for "truth-inducing" samples
if y_prime.item() < 1:
truthful_y_primes.append(y_prime.item())
new_row = pd.DataFrame([{
'prompt_text': prompt_to_analyze,
'true_emotion': true_emotion,
'predicted_emotion': predicted_emotion,
'num_truth_inducing_samples': len(truthful_y_primes),
'truthful_y_primes': truthful_y_primes
}])
results_df = pd.concat([results_df, new_row], ignore_index=True)
# free memory after each prompt
del original_embeddings
torch.cuda.empty_cache()
return results_df
%%time
y_prime1 = perform_causal_analysis_y_prime(model_llama, tokenizer, hallu_set1_df, sigma_value, num_noise_samples=100)
CPU times: user 20min 45s, sys: 56.5 s, total: 21min 42s Wall time: 21min 41s
y_prime1
| prompt_text | true_emotion | predicted_emotion | num_truth_inducing_samples | truthful_y_primes | |
|---|---|---|---|---|---|
| 0 | i survey my own posts over the last few years ... | joy | sadness | 0 | [] |
| 1 | i spent wandering around still kinda dazed and... | joy | sadness | 0 | [] |
| 2 | i hate that i m sitting here at the hostel wri... | joy | sadness | 0 | [] |
| 3 | i am feeling better though i dont sound it\nWh... | joy | sadness | 0 | [] |
| 4 | i feel like i know who most of them are by now... | joy | sadness | 100 | [0.10139751434326172, 0.2326068878173828, 0.13... |
| ... | ... | ... | ... | ... | ... |
| 109 | i am thinking is the fact because xanax slows ... | joy | sadness | 0 | [] |
| 110 | i guess it could be described as me just not r... | joy | sadness | 0 | [] |
| 111 | i dont really care and i dont feel proud of my... | joy | sadness | 0 | [] |
| 112 | i don t know what to feel as in i am not sure ... | joy | sadness | 0 | [] |
| 113 | i wasnt feeling sociable i really wasnt\nWhat ... | joy | sadness | 0 | [] |
114 rows × 5 columns
y_prime1[(y_prime1['num_truth_inducing_samples']>50)]
| prompt_text | true_emotion | predicted_emotion | num_truth_inducing_samples | truthful_y_primes | |
|---|---|---|---|---|---|
| 4 | i feel like i know who most of them are by now... | joy | sadness | 100 | [0.10139751434326172, 0.2326068878173828, 0.13... |
| 5 | i feel that this information is vital to movin... | joy | sadness | 100 | [-1.4320068359375, -1.3503599166870117, -1.504... |
| 9 | im not sure how i feel about needing to exerci... | joy | sadness | 100 | [0.3454475402832031, 0.5174989700317383, 0.465... |
| 13 | i feel pretty much like this scene from a href... | joy | sadness | 100 | [0.7035284042358398, 0.6996355056762695, 0.768... |
| 17 | i was struck by the masculine feel of the stro... | joy | sadness | 100 | [0.4183225631713867, 0.45858192443847656, 0.30... |
| 26 | i feel a lot better about the way i wrote this... | joy | sadness | 100 | [-2.3464412689208984, -2.4172840118408203, -2.... |
| 34 | i have ever seen in my life was laceys constan... | joy | sadness | 100 | [-0.6771392822265625, -0.4825878143310547, -0.... |
| 35 | i feel like it s more of a mellow restive drea... | joy | sadness | 100 | [-0.27861881256103516, -0.23867511749267578, -... |
| 40 | i feel like that s acceptable\nWhat the single... | joy | sadness | 53 | [0.9655389785766602, 0.9519329071044922, 0.973... |
| 41 | i feel like a may have mislead the very gracio... | joy | sadness | 100 | [0.4071950912475586, 0.5167264938354492, 0.410... |
| 45 | i have found that some korean men are turning ... | joy | sadness | 100 | [-0.17041683197021484, -0.17510128021240234, -... |
| 51 | i make myself feel useful by fucking a guy\nWh... | joy | sadness | 100 | [0.38109779357910156, 0.6441831588745117, 0.40... |
| 52 | i thought yoga was supposed to make me feel tr... | joy | sadness | 100 | [0.6283121109008789, 0.5904388427734375, 0.598... |
| 54 | i feel for all of you who have been supporting... | joy | sadness | 55 | [0.8176822662353516, 0.7598342895507812, 0.954... |
| 57 | i am on so many social networks right now and ... | joy | sadness | 100 | [0.6250476837158203, 0.6034221649169922, 0.760... |
| 72 | ive never done a detox or cleanse before and i... | joy | sadness | 100 | [-0.19140148162841797, -0.2155313491821289, -0... |
| 78 | i rarely respond to the comments made unless i... | joy | sadness | 100 | [-0.3918724060058594, -0.3231821060180664, -0.... |
| 84 | i feel so wiggy about everything maybe ill jus... | joy | sadness | 100 | [0.19391155242919922, 0.1393117904663086, 0.22... |
| 85 | i feel like my fish might be moderately more i... | joy | sadness | 100 | [-3.2285003662109375, -3.1198816299438477, -3.... |
| 91 | i feel pretty strongly about not doing a givea... | joy | sadness | 100 | [-0.8848772048950195, -0.7230663299560547, -0.... |
| 95 | i feel ok that must be the reason why it was s... | joy | sadness | 100 | [-1.5950384140014648, -1.6081962585449219, -1.... |
| 96 | i feel like that line is so perfect\nWhat the ... | joy | sadness | 100 | [-0.20010948181152344, -0.19095516204833984, -... |
| 102 | i have that feeling that spark and i am not su... | joy | sadness | 90 | [0.8293294906616211, 0.8380098342895508, 0.545... |
| 103 | i breathe into the feelings in my body resisti... | joy | sadness | 100 | [-0.03529071807861328, -0.015522003173828125, ... |
%%time
y_prime2 = perform_causal_analysis_y_prime(model_llama, tokenizer, hallu_set2_df, sigma_value, num_noise_samples=100)
CPU times: user 12min 10s, sys: 37.6 s, total: 12min 47s Wall time: 12min 47s
y_prime2
| prompt_text | true_emotion | predicted_emotion | num_truth_inducing_samples | truthful_y_primes | |
|---|---|---|---|---|---|
| 0 | i explain why i clung to a relationship with a... | joy | love | 0 | [] |
| 1 | i think they have always been proponents of th... | joy | love | 0 | [] |
| 2 | i feel like i am in paradise kissing those swe... | joy | love | 0 | [] |
| 3 | i really like this person feel that the questi... | joy | love | 0 | [] |
| 4 | i am being over dramatic but i do feel very st... | joy | love | 0 | [] |
| ... | ... | ... | ... | ... | ... |
| 61 | i chance that difficult to accommodate with th... | joy | love | 0 | [] |
| 62 | i feel the presence of the divine with you whe... | joy | love | 0 | [] |
| 63 | i feel is an acceptable and significant modern... | joy | love | 5 | [0.9637012481689453, 0.7831516265869141, 0.928... |
| 64 | i feel that bassanio is sincere about wooing p... | joy | love | 0 | [] |
| 65 | i was feeling especially brave and asked me to... | joy | love | 0 | [] |
66 rows × 5 columns
%%time
y_prime3 = perform_causal_analysis_y_prime(model_llama, tokenizer, hallu_set3_df, sigma_value, num_noise_samples=100)
y_prime3
--------------------------------------------------------------------------- NameError Traceback (most recent call last) Cell In[62], line 1 ----> 1 y_prime3 NameError: name 'y_prime3' is not defined
%%time
y_prime4 = perform_causal_analysis_y_prime(model_llama, tokenizer, hallu_set4_df, sigma_value, num_noise_samples=100)
y_prime4
| prompt_text | true_emotion | predicted_emotion | num_truth_inducing_samples | truthful_y_primes | |
|---|---|---|---|---|---|
| 0 | i feel rather privileged to have witnessed the... | joy | surprise | 100 | [-0.5713939666748047, -0.5586872100830078, -0.... |
| 1 | i do feel welcomed but it s a little weird\nWh... | joy | surprise | 0 | [] |
| 2 | i feel amused looking at the little turtle who... | joy | surprise | 96 | [0.7917404174804688, 0.8727140426635742, 0.912... |
| 3 | i had one of my low carb meal bars for breakfa... | joy | surprise | 0 | [] |
| 4 | i assumed it would feel casual\nWhat the singl... | joy | surprise | 100 | [0.47569751739501953, 0.562718391418457, 0.483... |
| 5 | i was truly surprised and feel quite honored\n... | joy | surprise | 0 | [] |
| 6 | i found myself being amazed at how mid s f wou... | joy | surprise | 0 | [] |
%%time
y_prime5 = perform_causal_analysis_y_prime(model_llama, tokenizer, hallu_set5_df, sigma_value, num_noise_samples=100)
y_prime5
| prompt_text | true_emotion | predicted_emotion | num_truth_inducing_samples | truthful_y_primes | |
|---|---|---|---|---|---|
| 0 | i feel that he is so determined to steal priva... | joy | anger | 0 | [] |
| 1 | i feel strong is that i dont let the anger win... | joy | anger | 0 | [] |
| 2 | i am feeling contented and pissed at the same ... | joy | anger | 0 | [] |
| 3 | i guess it comes from believing that when i wa... | joy | anger | 0 | [] |
| 4 | i swear and i mean this if the browns fail me ... | joy | anger | 0 | [] |
| 5 | i am not feeling so generous and he is sent to... | joy | anger | 0 | [] |
%%time
y_prime6 = perform_causal_analysis_y_prime(model_llama, tokenizer, hallu_set6_df, sigma_value, num_noise_samples=100)
CPU times: user 11min 50s, sys: 37.6 s, total: 12min 28s Wall time: 12min 27s
y_prime6
--------------------------------------------------------------------------- NameError Traceback (most recent call last) Cell In[63], line 1 ----> 1 y_prime6 NameError: name 'y_prime6' is not defined
%%time
y_prime7 = perform_causal_analysis_y_prime(model_llama, tokenizer, hallu_set7_df, sigma_value, num_noise_samples=100)
CPU times: user 4min 51s, sys: 18.7 s, total: 5min 10s Wall time: 5min 10s
y_prime7
| prompt_text | true_emotion | predicted_emotion | num_truth_inducing_samples | truthful_y_primes | |
|---|---|---|---|---|---|
| 0 | i guess i wont feel too jealous since i often ... | anger | joy | 0 | [] |
| 1 | i feel like my irritable sensitive combination... | anger | joy | 0 | [] |
| 2 | i didnt feel i rushed things dhawan tweet scri... | anger | joy | 0 | [] |
| 3 | i tasted some hari raya cookies and feeling gr... | anger | joy | 0 | [] |
| 4 | i buy something i go out and look at what else... | anger | joy | 100 | [-0.6309471130371094, -0.6317272186279297, -1.... |
| 5 | i started feeling a little stressed about leav... | anger | joy | 0 | [] |
| 6 | i feel like i m finally losing that stubborn l... | anger | joy | 0 | [] |
| 7 | i feel like i should be listening to chinesepo... | anger | joy | 0 | [] |
| 8 | whenever i put myself in others shoes and try ... | anger | joy | 0 | [] |
| 9 | i was lying in bed last night after a day of m... | anger | joy | 100 | [-4.0432891845703125, -4.089033126831055, -4.0... |
| 10 | i wish i could bottle her squeals of delight a... | anger | joy | 0 | [] |
| 11 | i can cycle further than ever before and the f... | anger | joy | 0 | [] |
| 12 | i read her blog is that i feel that shes one p... | anger | joy | 0 | [] |
| 13 | i feel its rude to say he is better than all t... | anger | joy | 0 | [] |
| 14 | i feel like a greedy pig catching up to do lt ... | anger | joy | 0 | [] |
| 15 | i feel completely rude with not keeping up wit... | anger | joy | 0 | [] |
| 16 | i did not want to feel rushed through the prog... | anger | joy | 0 | [] |
| 17 | i don t really believe because i walked throug... | anger | joy | 100 | [-0.33954811096191406, -0.34633445739746094, -... |
| 18 | i needed some space i needed to grow i was in ... | anger | joy | 100 | [-4.152190208435059, -4.313880920410156, -4.28... |
| 19 | i lie down he feels my belly listens to babys ... | anger | joy | 0 | [] |
| 20 | i went outside to shut in the hens then was te... | anger | joy | 0 | [] |
| 21 | i feel like it add a little bit more shield fr... | anger | joy | 0 | [] |
| 22 | i didnt want to be spending my days working in... | anger | joy | 0 | [] |
| 23 | i have to admit that i feel the teensiest bit ... | anger | joy | 0 | [] |
| 24 | i was feeling pretty distracted with a few thi... | anger | joy | 0 | [] |
| 25 | im able to refine my poses and concepts withou... | anger | joy | 0 | [] |
%%time
y_prime8 = perform_causal_analysis_y_prime(model_llama, tokenizer, hallu_set8_df, sigma_value, num_noise_samples=100)
CPU times: user 1min 37s, sys: 5.02 s, total: 1min 42s Wall time: 1min 41s
y_prime8
| prompt_text | true_emotion | predicted_emotion | num_truth_inducing_samples | truthful_y_primes | |
|---|---|---|---|---|---|
| 0 | i feel it is dangerous especially for the new ... | anger | fear | 0 | [] |
| 1 | i feel like it s waiting in the wings just pat... | anger | fear | 0 | [] |
| 2 | i feel like i fucked up big time but i have to... | anger | fear | 0 | [] |
| 3 | i feel that it is extremely dangerous for her ... | anger | fear | 0 | [] |
| 4 | i have this really bad feeling that cold is wh... | anger | fear | 0 | [] |
| 5 | i have felt the need to write out my sometimes... | anger | fear | 0 | [] |
| 6 | i am sat here feeling mightily distracted and ... | anger | fear | 0 | [] |
| 7 | i get the feeling that this could be dangerous... | anger | fear | 0 | [] |
| 8 | i felt apprehensive in regards to the party of... | anger | fear | 0 | [] |
%%time
y_prime9 = perform_causal_analysis_y_prime(model_llama, tokenizer, hallu_set9_df, sigma_value, num_noise_samples=100)
CPU times: user 1min 39s, sys: 6.19 s, total: 1min 45s Wall time: 1min 45s
y_prime9
| prompt_text | true_emotion | predicted_emotion | num_truth_inducing_samples | truthful_y_primes | |
|---|---|---|---|---|---|
| 0 | i loved about ellie is that she didnt feel ins... | anger | love | 0 | [] |
| 1 | i asked her what she meant by shes gonna feel ... | anger | love | 0 | [] |
| 2 | i love that this is a place a series with no r... | anger | love | 0 | [] |
| 3 | i hope it is because he understands the way i ... | anger | love | 0 | [] |
| 4 | i am starting to feel like maybe i do want a r... | anger | love | 0 | [] |
| 5 | i feel like they rushed the relationship\nWhat... | anger | love | 0 | [] |
| 6 | at a party i met a girl who drew me to her\nWh... | anger | love | 0 | [] |
| 7 | i am not feeling the love towards myself and t... | anger | love | 0 | [] |
| 8 | i was feeling cold towards to my partner altho... | anger | love | 0 | [] |
%%time
y_prime10 = perform_causal_analysis_y_prime(model_llama, tokenizer, hallu_set10_df, sigma_value, num_noise_samples=100)
CPU times: user 33.5 s, sys: 2 s, total: 35.5 s Wall time: 35.5 s
y_prime10
| prompt_text | true_emotion | predicted_emotion | num_truth_inducing_samples | truthful_y_primes | |
|---|---|---|---|---|---|
| 0 | when a friend dropped a frog down my neck\nWha... | anger | surprise | 0 | [] |
| 1 | i was quite surprised with the weather these p... | anger | surprise | 0 | [] |
| 2 | i started to feel like i was going mad as i wa... | anger | surprise | 0 | [] |
%%time
y_prime11 = perform_causal_analysis_y_prime(model_llama, tokenizer, hallu_set10_df, sigma_value, num_noise_samples=100)
CPU times: user 33.4 s, sys: 1.94 s, total: 35.3 s Wall time: 35.3 s
y_prime11
| prompt_text | true_emotion | predicted_emotion | num_truth_inducing_samples | truthful_y_primes | |
|---|---|---|---|---|---|
| 0 | when a friend dropped a frog down my neck\nWha... | anger | surprise | 0 | [] |
| 1 | i was quite surprised with the weather these p... | anger | surprise | 0 | [] |
| 2 | i started to feel like i was going mad as i wa... | anger | surprise | 0 | [] |
%%time
y_prime12 = perform_causal_analysis_y_prime(model_llama, tokenizer, hallu_set10_df, sigma_value, num_noise_samples=100)
CPU times: user 33.3 s, sys: 2.12 s, total: 35.4 s Wall time: 35.4 s
y_prime12
| prompt_text | true_emotion | predicted_emotion | num_truth_inducing_samples | truthful_y_primes | |
|---|---|---|---|---|---|
| 0 | when a friend dropped a frog down my neck\nWha... | anger | surprise | 0 | [] |
| 1 | i was quite surprised with the weather these p... | anger | surprise | 0 | [] |
| 2 | i started to feel like i was going mad as i wa... | anger | surprise | 0 | [] |
%%time
y_prime13 = perform_causal_analysis_y_prime(model_llama, tokenizer, hallu_set10_df, sigma_value, num_noise_samples=100)
CPU times: user 33.3 s, sys: 2.09 s, total: 35.4 s Wall time: 35.4 s
y_prime13
| prompt_text | true_emotion | predicted_emotion | num_truth_inducing_samples | truthful_y_primes | |
|---|---|---|---|---|---|
| 0 | when a friend dropped a frog down my neck\nWha... | anger | surprise | 0 | [] |
| 1 | i was quite surprised with the weather these p... | anger | surprise | 0 | [] |
| 2 | i started to feel like i was going mad as i wa... | anger | surprise | 0 | [] |
%%time
y_prime14 = perform_causal_analysis_y_prime(model_llama, tokenizer, hallu_set10_df, sigma_value, num_noise_samples=100)
CPU times: user 33.3 s, sys: 2.11 s, total: 35.4 s Wall time: 35.4 s
y_prime14
| prompt_text | true_emotion | predicted_emotion | num_truth_inducing_samples | truthful_y_primes | |
|---|---|---|---|---|---|
| 0 | when a friend dropped a frog down my neck\nWha... | anger | surprise | 0 | [] |
| 1 | i was quite surprised with the weather these p... | anger | surprise | 0 | [] |
| 2 | i started to feel like i was going mad as i wa... | anger | surprise | 0 | [] |
%%time
y_prime15 = perform_causal_analysis_y_prime(model_llama, tokenizer, hallu_set10_df, sigma_value, num_noise_samples=100)
CPU times: user 33.4 s, sys: 2.2 s, total: 35.6 s Wall time: 35.6 s
y_prime15
| prompt_text | true_emotion | predicted_emotion | num_truth_inducing_samples | truthful_y_primes | |
|---|---|---|---|---|---|
| 0 | when a friend dropped a frog down my neck\nWha... | anger | surprise | 0 | [] |
| 1 | i was quite surprised with the weather these p... | anger | surprise | 0 | [] |
| 2 | i started to feel like i was going mad as i wa... | anger | surprise | 0 | [] |
%%time
y_prime16 = perform_causal_analysis_y_prime(model_llama, tokenizer, hallu_set10_df, sigma_value, num_noise_samples=100)
CPU times: user 33.3 s, sys: 2.11 s, total: 35.4 s Wall time: 35.4 s
y_prime16
| prompt_text | true_emotion | predicted_emotion | num_truth_inducing_samples | truthful_y_primes | |
|---|---|---|---|---|---|
| 0 | when a friend dropped a frog down my neck\nWha... | anger | surprise | 0 | [] |
| 1 | i was quite surprised with the weather these p... | anger | surprise | 0 | [] |
| 2 | i started to feel like i was going mad as i wa... | anger | surprise | 0 | [] |
%%time
y_prime17 = perform_causal_analysis_y_prime(model_llama, tokenizer, hallu_set10_df, sigma_value, num_noise_samples=100)
CPU times: user 33.3 s, sys: 2.1 s, total: 35.4 s Wall time: 35.4 s
y_prime17
| prompt_text | true_emotion | predicted_emotion | num_truth_inducing_samples | truthful_y_primes | |
|---|---|---|---|---|---|
| 0 | when a friend dropped a frog down my neck\nWha... | anger | surprise | 0 | [] |
| 1 | i was quite surprised with the weather these p... | anger | surprise | 0 | [] |
| 2 | i started to feel like i was going mad as i wa... | anger | surprise | 0 | [] |
%%time
y_prime18 = perform_causal_analysis_y_prime(model_llama, tokenizer, hallu_set10_df, sigma_value, num_noise_samples=100)
CPU times: user 33.3 s, sys: 2.14 s, total: 35.4 s Wall time: 35.4 s
y_prime18
| prompt_text | true_emotion | predicted_emotion | num_truth_inducing_samples | truthful_y_primes | |
|---|---|---|---|---|---|
| 0 | when a friend dropped a frog down my neck\nWha... | anger | surprise | 0 | [] |
| 1 | i was quite surprised with the weather these p... | anger | surprise | 0 | [] |
| 2 | i started to feel like i was going mad as i wa... | anger | surprise | 0 | [] |
%%time
y_prime19 = perform_causal_analysis_y_prime(model_llama, tokenizer, hallu_set10_df, sigma_value, num_noise_samples=100)
CPU times: user 33.2 s, sys: 2.18 s, total: 35.4 s Wall time: 35.4 s
y_prime19
| prompt_text | true_emotion | predicted_emotion | num_truth_inducing_samples | truthful_y_primes | |
|---|---|---|---|---|---|
| 0 | when a friend dropped a frog down my neck\nWha... | anger | surprise | 0 | [] |
| 1 | i was quite surprised with the weather these p... | anger | surprise | 0 | [] |
| 2 | i started to feel like i was going mad as i wa... | anger | surprise | 0 | [] |
%%time
y_prime20 = perform_causal_analysis_y_prime(model_llama, tokenizer, hallu_set10_df, sigma_value, num_noise_samples=100)
CPU times: user 33.4 s, sys: 2.04 s, total: 35.4 s Wall time: 35.4 s
y_prime20
| prompt_text | true_emotion | predicted_emotion | num_truth_inducing_samples | truthful_y_primes | |
|---|---|---|---|---|---|
| 0 | when a friend dropped a frog down my neck\nWha... | anger | surprise | 0 | [] |
| 1 | i was quite surprised with the weather these p... | anger | surprise | 0 | [] |
| 2 | i started to feel like i was going mad as i wa... | anger | surprise | 0 | [] |
def get_target_token_indices(tokenizer, prompt, target_tokens):
"""
Finds the token indices for all occurrences of the target tokens in a prompt.
"""
input_ids = tokenizer.encode(prompt, add_special_tokens=False)
target_indices = [
i for i, token_id in enumerate(input_ids)
if tokenizer.decode(token_id).strip().lower() in target_tokens
]
return target_indices
target_emotional_tokens = ['abandoned', 'abandonment', 'abhor', 'abhorrent', 'aberration', 'abduction', 'ability', 'abba',
'abbot', 'affecting', 'affective', 'affiliate', 'affirm', 'affirmation', 'affirmative', 'afflict',
'afflicted', 'affliction', 'affluence', 'afford', 'affront', 'afraid', 'afresh', 'aftermath', 'agape',
'aggressor', 'aggravate', 'aggravating', 'aggression', 'aggressive', 'aggressiveness', 'aghast', 'agitate',
'agitated', 'agitation', 'agony', 'agree', 'agreeable', 'agreed', 'agreement', 'alarm', 'alarming', 'albatross',
'alert', 'alienate', 'alienated', 'alienation', 'alive', 'allegiance', 'alleviate', 'alone', 'amazement', 'amazed',
'amazing', 'ambition', 'ambitious', 'ameliorate', 'amusement', 'amusing', 'anarchism', 'anarchist', 'anarchy', 'angel',
'angelic', 'anger', 'angry', 'anguish', 'animosity', 'annoy', 'annoyance', 'annoying', 'anomaly', 'antagonism', 'antagonist',
'antagonistic', 'anxiety', 'anxious', 'apathetic', 'apathy', 'apologize', 'apology', 'appeal', 'appealing', 'appease', 'applaud',
'applause', 'appreciation', 'appreciative', 'apprehensive', 'apprehension', 'approved', 'arrogance', 'arrogant', 'ashamed', 'assault',
'assassination', 'assure', 'assured', 'astonished', 'astonishing', 'astonishment', 'atrocious', 'atrocity', 'aversion', 'avert', 'avid',
'awful', 'awkward', 'backfire', 'bad', 'baffle', 'baffled', 'bafflement', 'baleful', 'ballyhoo', 'banter', 'baseless', 'beautiful',
'beauty', 'beg', 'beguile', 'belittle', 'belligerence', 'belligerent', 'benefit', 'beneficial', 'benevolence', 'benevolent', 'bereaved',
'bereavement', 'bestial', 'betray', 'betrayal', 'bicker', 'bickering', 'bitter', 'bitterness', 'blackmail', 'blame', 'blight', 'bliss',
'blissful', 'boast', 'boredom', 'bother', 'brave', 'bravery', 'breakthrough', 'bribery', 'bright', 'brilliant', 'brutal', 'brutality',
'bully', 'calamity', 'calm', 'calmness', 'canonize', 'captivate', 'care', 'careful', 'carefully', 'caress', 'catastrophe', 'celebrate',
'celebration', 'certain', 'certainty', 'chagrin', 'charity', 'charm', 'charming', 'cheer', 'cheerful', 'cheerless', 'cheery', 'cherish',
'clash', 'coerce', 'coercion', 'collapse', 'comfort', 'comfortable', 'compasionate', 'compassion', 'complacent', 'complaint', 'compliment',
'complimentary', 'composure', 'confess', 'confession', 'confidence', 'confident', 'conflict', 'confound', 'confrontation', 'confuse',
'confused', 'confusion', 'congratulate', 'congratulation', 'conspiracy', 'contagion', 'contagious', 'contempt', 'contemptible',
'contemptuous', 'contentment', 'corrupt', 'corruption', 'courage', 'courageous', 'covetous', 'cower', 'cramped', 'crash', 'crave',
'craving', 'crazed', 'crazy', 'crush', 'crying', 'cynical', 'damage', 'daring', 'darkness', 'dastardly', 'dauntless', 'dead', 'dear',
'dearth', 'death', 'decay', 'deceit', 'deceitful', 'deceive', 'deception', 'defeat', 'defeated', 'defect', 'defective', 'defense',
'defenseless', 'defer', 'defiance', 'deficient', 'deformity', 'dejected', 'dejection', 'delay', 'delight', 'delighted', 'demise',
'demolition', 'demon', 'denounce', 'denunciation', 'deny', 'deplete', 'deplorable', 'depravity', 'depressed', 'depression', 'deprive',
'deprived', 'deserve', 'desirable', 'desire', 'despair', 'desperate', 'desperation', 'despicable', 'despise', 'destroy', 'destruction',
'despondent', 'despondency', 'detest', 'detestable', 'devastate', 'devastating', 'devil', 'devilish', 'devotion', 'devout', 'difficult',
'difficulty', 'disagree', 'disagreement', 'disappointed', 'disappointment', 'disapprove', 'disapproval', 'disaster', 'disastrous',
'disbelief', 'discomfort', 'discontent', 'discontented', 'discord', 'discourage', 'disgust', 'disgusted', 'disgusting', 'dishearten',
'disheveled', 'dishonest', 'dishonesty', 'dishonor', 'disintegrate', 'dislike', 'dismal', 'dismay', 'dismayed', 'displeased',
'displeasure', 'disrespect', 'disrespectful', 'distress', 'distressed', 'distrust', 'disturb', 'divorce', 'dominant', 'doubt',
'dread', 'dreadful', 'dull', 'eager', 'ecstasy', 'elation', 'eloquence',
'embrace', 'emotional', 'empty', 'enchantment', 'encouragement', 'endearing', 'enjoy', 'enjoyment', 'enrage', 'enraged', 'entice',
'entitlement', 'enthusiasm', 'enthusiastic', 'envy', 'evil', 'exasperation', 'excite', 'excited', 'excitement', 'exhausted', 'exuberant',
'fabulous', 'faint', 'faith', 'faithful', 'falsify', 'famish', 'fanatic', 'fantastic', 'fear', 'fearful', 'fearless', 'fearsome',
'feeble', 'felicity', 'ferocious', 'fiery', 'fight', 'filthy', 'flagging', 'flatter', 'flattery', 'flustered', 'foe', 'fondness',
'fool', 'foolish', 'forgive', 'forgiveness', 'forlorn', 'fortunate', 'fortune', 'foul', 'frantic', 'frenzy', 'friend', 'friendly',
'fright', 'frightened', 'frightening', 'frown', 'frustrate', 'frustrated', 'frustration', 'furious', 'fury', 'gallant', 'gaudy',
'ghastly', 'giddy', 'gloom', 'gloomy', 'glorious', 'glory', 'grief', 'grieving', 'grimace', 'gross', 'grotesque', 'guilt', 'guilty',
'hapless', 'happiness', 'happy', 'harass', 'harm', 'harsh', 'hatred', 'haunt', 'haunted', 'heartbreak', 'heartbreaking', 'heartless',
'heaven', 'hell', 'helpless', 'hesitation', 'hideous', 'hope', 'hopeful', 'hopeless', 'hopelessness', 'horrendous', 'horrible', 'horror',
'humiliate', 'humiliation', 'hurt', 'hymn', 'idiot', 'ignorant', 'ill', 'illness', 'imbecile', 'immortal', 'impatient', 'important',
'inability', 'inadequate', 'incensed', 'incite', 'indignant', 'indignation', 'infatuated', 'infatuation', 'infection', 'inferior',
'inferno', 'infuriate', 'infuriated', 'infuriating', 'insane', 'insanity', 'insidious', 'insult', 'insulting', 'integrity', 'interest',
'interested', 'invasion', 'invigorate', 'involve', 'irk', 'jealousy', 'jest', 'jinx', 'jovial', 'joy', 'joyful', 'jubilation', 'karma',
'kidnap', 'kindness', 'lack', 'lament', 'lamentation', 'laugh', 'laughter', 'leisure', 'liberation', 'liberty', 'lie', 'light', 'like',
'love', 'loyal', 'loyalty', 'ludicrous', 'lust', 'maddening', 'madness', 'malaise', 'malice', 'malignant', 'maniac', 'massacre',
'menace', 'merciless', 'mercy', 'mirth', 'misery', 'mishap', 'mistake', 'molestation', 'monstrous', 'morbid', 'mourn', 'mournful',
'murder', 'mutiny', 'nasty', 'nausea', 'nauseating', 'neglect', 'neglected', 'neglectful', 'nerve', 'nervous', 'nightmare',
'obnoxious', 'obscene', 'offend', 'offense', 'ominous', 'optimism', 'optimistic', 'outrage', 'outrageous', 'overjoy',
'panic', 'paradise', 'passion', 'patience', 'peace', 'peaceful', 'pessimistic', 'pity', 'plague', 'pleasant', 'pleasure',
'poison', 'poisonous', 'praise', 'pride', 'promising', 'protest', 'proud', 'rage', 'rape', 'rapport', 'rascal', 'relieve',
'relief', 'remorse', 'remorseful', 'resentment', 'respect', 'revenge', 'revulsion', 'ridiculous', 'rigid', 'risk', 'sadness',
'safe', 'safety', 'salvation', 'sanguine', 'sarcasm', 'savage', 'scare', 'scared', 'scary', 'scream', 'screaming', 'screech',
'secure', 'sensational', 'sensitive', 'serene', 'sham', 'shame', 'shattered', 'shock', 'shocking', 'shriek', 'sick', 'sickness',
'sincere', 'sincerity', 'sneer', 'solemn', 'sorrow', 'sorrowful', 'spectacular', 'splendid', 'squalor', 'stab', 'startle', 'startling',
'strangle', 'stupid', 'suffering', 'suffocate', 'superb', 'surprise', 'surprised', 'suspense', 'suspicious', 'swindle', 'sympathy',
'terror', 'terrible', 'terrific', 'terrified', 'threat', 'threaten', 'thrilled', 'thrilling', 'tragedy', 'tragic', 'triumph',
'triumphant', 'trust', 'trusted', 'trusting', 'ugly', 'uncomfortable', 'unhappiness', 'unhappy', 'uninspired', 'unpleasant',
'upset', 'upsetting', 'vengeance', 'vicious', 'victory', 'violent', 'want', 'wary', 'weak', 'weakness', 'weep', 'weeping', 'welcome',
'woe', 'wonderful', 'worry', 'wretched', 'wrong', 'wrongdoing', 'yearning', 'yell', 'zest']
def perform_causal_analysis_emotional_tokens(model, tokenizer, prompt_df, sigma_value, num_noise_samples, target_tokens):
"""
Performs causal analysis by adding scaled Gaussian noise to the embeddings of
emotionally charged tokens, testing if this intervention reduces the hallucination.
Args:
model (HookedTransformer): The loaded TransformerLens model.
tokenizer: The tokenizer for the model.
hallu_df (pd.DataFrame): DataFrame containing hallucinated prompts.
sigma_value (float): The standard deviation for the Gaussian noise.
num_noise_samples (int): The number of noise samples to test per prompt.
target_tokens (list): A list of emotionally charged words to target for noise injection.
Returns:
pd.DataFrame: A DataFrame with the results of the analysis, including
the number of "truth-inducing" samples and their y' values.
"""
results_df = pd.DataFrame(columns=['prompt_text', 'true_emotion', 'predicted_emotion', 'num_truth_inducing_samples', 'truthful_y_primes'])
# Ensure no gradients are computed to save memory and computation
with torch.no_grad():
for index, row in prompt_df.iterrows():
prompt_to_analyze = row['constrained prompt']
true_emotion = row['emotion']
predicted_emotion = row['predicted emotion']
# Find all indices of the target emotional tokens
target_indices = get_target_token_indices(tokenizer, prompt_to_analyze, target_tokens)
# Skip if no target tokens are found in this prompt
if not target_indices:
print(f"Skipping prompt {index}: No target tokens found.")
continue
truthful_y_primes = []
# 1. Running the original prompt once to get the original embeddings
_, original_cache = model.run_with_cache(prompt_to_analyze.strip())
original_embeddings = original_cache['embed'].clone().detach()
# Clear the cache to free up memory before the noise sampling loop starts
del original_cache
torch.cuda.empty_cache()
# 2. Get token IDs for the true and predicted emotions once
try:
# Some tokenizers prepend a space, so we check for both cases
true_id_with_space = tokenizer.encode(" " + true_emotion, add_special_tokens=False)[0]
predicted_id_with_space = tokenizer.encode(" " + predicted_emotion, add_special_tokens=False)[0]
true_id_no_space = tokenizer.encode(true_emotion, add_special_tokens=False)[0]
predicted_id_no_space = tokenizer.encode(predicted_emotion, add_special_tokens=False)[0]
except IndexError:
print(f"Skipping prompt {index}: Emotion token not found.")
continue
for _ in range(num_noise_samples):
# Add noise to the original embeddings to get u*
noise = torch.randn_like(original_embeddings) * sigma_value
perturbed_embeddings = original_embeddings.clone()
# Iterate through the found indices and add noise to each one
for token_idx in target_indices:
perturbed_embeddings[0, token_idx, :] += noise[0, token_idx, :]
# Using a hook to replace the 'embed' output with the perturbed embeddings
def hook_fn_replace_embed(embed_output, hook):
return perturbed_embeddings
# Running the model with the hook
new_logits = model.run_with_hooks(
input=tokenizer.encode(prompt_to_analyze.strip(), return_tensors='pt'),
fwd_hooks=[('hook_embed', hook_fn_replace_embed)]
)
# Computing the new log-likelihood ratio (y') from the new logits
final_logits = new_logits[0, -1, :]
# We try both possible token IDs to be safe
if (predicted_id_with_space in final_logits and true_id_with_space in final_logits):
y_prime = final_logits[predicted_id_with_space] - final_logits[true_id_with_space]
elif (predicted_id_no_space in final_logits and true_id_no_space in final_logits):
y_prime = final_logits[predicted_id_no_space] - final_logits[true_id_no_space]
else:
# If neither token is in the vocab, we skip this sample
continue
# Filtering for "truth-inducing" samples where y' < 1
if y_prime.item() < 1:
truthful_y_primes.append(y_prime.item())
new_row = pd.DataFrame([{
'prompt_text': prompt_to_analyze,
'true_emotion': true_emotion,
'predicted_emotion': predicted_emotion,
'num_truth_inducing_samples': len(truthful_y_primes),
'truthful_y_primes': truthful_y_primes
}])
results_df = pd.concat([results_df, new_row], ignore_index=True)
# Free memory after each prompt
del original_embeddings
torch.cuda.empty_cache()
return results_df
%%time
y_prime1_H2 = perform_causal_analysis_emotional_tokens(model_llama, tokenizer, hallu_set1_df, sigma_value, 100, target_emotional_tokens)
y_prime1_H2